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,795 @@
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
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'AcceleratorManufacturer',
9
+ 'AcceleratorType',
10
+ 'ArchitectureType',
11
+ 'CachingTypes',
12
+ 'ComponentName',
13
+ 'CpuManufacturer',
14
+ 'DeleteOptions',
15
+ 'DiffDiskOptions',
16
+ 'DiffDiskPlacement',
17
+ 'DiskControllerTypes',
18
+ 'DiskCreateOptionTypes',
19
+ 'DiskDeleteOptionTypes',
20
+ 'DomainNameLabelScopeTypes',
21
+ 'EvictionPolicy',
22
+ 'IPVersion',
23
+ 'LinuxPatchAssessmentMode',
24
+ 'LinuxVMGuestPatchAutomaticByPlatformRebootSetting',
25
+ 'LinuxVMGuestPatchMode',
26
+ 'LocalStorageDiskType',
27
+ 'ManagedServiceIdentityType',
28
+ 'Mode',
29
+ 'NetworkApiVersion',
30
+ 'NetworkInterfaceAuxiliaryMode',
31
+ 'NetworkInterfaceAuxiliarySku',
32
+ 'OperatingSystemTypes',
33
+ 'PassName',
34
+ 'ProtocolTypes',
35
+ 'PublicIPAddressSkuName',
36
+ 'PublicIPAddressSkuTier',
37
+ 'RegularPriorityAllocationStrategy',
38
+ 'SecurityEncryptionTypes',
39
+ 'SecurityTypes',
40
+ 'SettingNames',
41
+ 'SpotAllocationStrategy',
42
+ 'StorageAccountTypes',
43
+ 'VMAttributeSupport',
44
+ 'VMCategory',
45
+ 'WindowsPatchAssessmentMode',
46
+ 'WindowsVMGuestPatchAutomaticByPlatformRebootSetting',
47
+ 'WindowsVMGuestPatchMode',
48
+ ]
49
+
50
+
51
+ class AcceleratorManufacturer(str, Enum):
52
+ """
53
+ Accelerator manufacturers supported by Azure VMs.
54
+ """
55
+ AMD = "AMD"
56
+ """
57
+ AMD GpuType
58
+ """
59
+ NVIDIA = "Nvidia"
60
+ """
61
+ Nvidia GpuType
62
+ """
63
+ XILINX = "Xilinx"
64
+ """
65
+ Xilinx GpuType
66
+ """
67
+
68
+
69
+ class AcceleratorType(str, Enum):
70
+ """
71
+ Accelerator types supported by Azure VMs.
72
+ """
73
+ GPU = "GPU"
74
+ """
75
+ GPU Accelerator
76
+ """
77
+ FPGA = "FPGA"
78
+ """
79
+ FPGA Accelerator
80
+ """
81
+
82
+
83
+ class ArchitectureType(str, Enum):
84
+ """
85
+ Architecture types supported by Azure VMs.
86
+ """
87
+ ARM64 = "ARM64"
88
+ """
89
+ ARM64 Architecture
90
+ """
91
+ X86 = "X86"
92
+ """
93
+ X86 Architecture
94
+ """
95
+
96
+
97
+ class CachingTypes(str, Enum):
98
+ """
99
+ Specifies the caching requirements. Possible values are: **None,**
100
+ **ReadOnly,** **ReadWrite.** The default values are: **None for Standard
101
+ storage. ReadOnly for Premium storage.**
102
+ """
103
+ NONE = "None"
104
+ """
105
+ 'None' is default for Standard Storage
106
+ """
107
+ READ_ONLY = "ReadOnly"
108
+ """
109
+ 'ReadOnly' is default for Premium Storage
110
+ """
111
+ READ_WRITE = "ReadWrite"
112
+ """
113
+ 'ReadWrite' is default for OS Disk
114
+ """
115
+
116
+
117
+ class ComponentName(str, Enum):
118
+ """
119
+ The component name. Currently, the only allowable value is
120
+ Microsoft-Windows-Shell-Setup.
121
+ """
122
+ MICROSOFT_WINDOWS_SHELL_SETUP = "Microsoft-Windows-Shell-Setup"
123
+
124
+
125
+ class CpuManufacturer(str, Enum):
126
+ """
127
+ Cpu Manufacturers supported by Azure VMs.
128
+ """
129
+ INTEL = "Intel"
130
+ """
131
+ Intel CPU.
132
+ """
133
+ AMD = "AMD"
134
+ """
135
+ AMD CPU.
136
+ """
137
+ MICROSOFT = "Microsoft"
138
+ """
139
+ Microsoft CPU.
140
+ """
141
+ AMPERE = "Ampere"
142
+ """
143
+ Ampere CPU.
144
+ """
145
+
146
+
147
+ class DeleteOptions(str, Enum):
148
+ """
149
+ Specify what happens to the public IP when the VM is deleted
150
+ """
151
+ DELETE = "Delete"
152
+ """
153
+ Delete Option
154
+ """
155
+ DETACH = "Detach"
156
+ """
157
+ Detach Option
158
+ """
159
+
160
+
161
+ class DiffDiskOptions(str, Enum):
162
+ """
163
+ Specifies the ephemeral disk settings for operating system disk.
164
+ """
165
+ LOCAL = "Local"
166
+ """
167
+ Local Option.
168
+ """
169
+
170
+
171
+ class DiffDiskPlacement(str, Enum):
172
+ """
173
+ Specifies the ephemeral disk placement for operating system disk. Possible
174
+ values are: **CacheDisk,** **ResourceDisk.** The defaulting behavior is:
175
+ **CacheDisk** if one is configured for the VM size otherwise **ResourceDisk**
176
+ is used. Refer to the VM size documentation for Windows VM at
177
+ https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at
178
+ https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM
179
+ sizes exposes a cache disk.
180
+ """
181
+ CACHE_DISK = "CacheDisk"
182
+ """
183
+ CacheDisk option.
184
+ """
185
+ RESOURCE_DISK = "ResourceDisk"
186
+ """
187
+ Resource Disk option.
188
+ """
189
+ NVME_DISK = "NvmeDisk"
190
+ """
191
+ NvmeDisk option.
192
+ """
193
+
194
+
195
+ class DiskControllerTypes(str, Enum):
196
+ """
197
+ Specifies the disk controller type configured for the virtual machines in the scale set. Minimum api-version: 2022-08-01
198
+ """
199
+ SCSI = "SCSI"
200
+ """
201
+ SCSI disk type
202
+ """
203
+ NV_ME = "NVMe"
204
+ """
205
+ NVMe disk type
206
+ """
207
+
208
+
209
+ class DiskCreateOptionTypes(str, Enum):
210
+ """
211
+ Specifies how the virtual machines in the scale set should be created. The only
212
+ allowed value is: **FromImage.** This value is used when you are using an image
213
+ to create the virtual machine. If you are using a platform image, you also use
214
+ the imageReference element described above. If you are using a marketplace
215
+ image, you also use the plan element previously described.
216
+ """
217
+ FROM_IMAGE = "FromImage"
218
+ """
219
+ This value is used when you are using an image to create the virtual machine.
220
+ If you are using a platform image, you also use the imageReference element
221
+ described above. If you are using a marketplace image, you also use the
222
+ plan element previously described.
223
+ """
224
+ EMPTY = "Empty"
225
+ """
226
+ This value is used when creating an empty data disk.
227
+ """
228
+ ATTACH = "Attach"
229
+ """
230
+ This value is used when you are using a specialized disk to create the virtual machine.
231
+ """
232
+ COPY = "Copy"
233
+ """
234
+ This value is used to create a data disk from a snapshot or another disk.
235
+ """
236
+ RESTORE = "Restore"
237
+ """
238
+ This value is used to create a data disk from a disk restore point.
239
+ """
240
+
241
+
242
+ class DiskDeleteOptionTypes(str, Enum):
243
+ """
244
+ Specifies whether OS Disk should be deleted or detached upon VMSS Flex deletion
245
+ (This feature is available for VMSS with Flexible OrchestrationMode only).
246
+ <br><br> Possible values: <br><br> **Delete** If this value is used, the OS
247
+ disk is deleted when VMSS Flex VM is deleted.<br><br> **Detach** If this value
248
+ is used, the OS disk is retained after VMSS Flex VM is deleted. <br><br> The
249
+ default value is set to **Delete**. For an Ephemeral OS Disk, the default value
250
+ is set to **Delete**. User cannot change the delete option for Ephemeral OS
251
+ Disk.
252
+ """
253
+ DELETE = "Delete"
254
+ """
255
+ If this value is used, the managed disk is deleted when VM gets deleted.
256
+ """
257
+ DETACH = "Detach"
258
+ """
259
+ If this value is used, the managed disk is retained after VM gets deleted.
260
+ """
261
+
262
+
263
+ class DomainNameLabelScopeTypes(str, Enum):
264
+ """
265
+ The Domain name label scope.The concatenation of the hashed domain name label
266
+ that generated according to the policy from domain name label scope and vm
267
+ index will be the domain name labels of the PublicIPAddress resources that will
268
+ be created
269
+ """
270
+ TENANT_REUSE = "TenantReuse"
271
+ """
272
+ TenantReuse type
273
+ """
274
+ SUBSCRIPTION_REUSE = "SubscriptionReuse"
275
+ """
276
+ SubscriptionReuse type
277
+ """
278
+ RESOURCE_GROUP_REUSE = "ResourceGroupReuse"
279
+ """
280
+ ResourceGroupReuse type
281
+ """
282
+ NO_REUSE = "NoReuse"
283
+ """
284
+ NoReuse type
285
+ """
286
+
287
+
288
+ class EvictionPolicy(str, Enum):
289
+ """
290
+ Eviction Policy to follow when evicting Spot VMs.
291
+ """
292
+ DELETE = "Delete"
293
+ """
294
+ When evicted, the Spot VM will be deleted and the corresponding capacity will be updated to reflect this.
295
+ """
296
+ DEALLOCATE = "Deallocate"
297
+ """
298
+ When evicted, the Spot VM will be deallocated/stopped
299
+ """
300
+
301
+
302
+ class IPVersion(str, Enum):
303
+ """
304
+ Available from Api-Version 2019-07-01 onwards, it represents whether the
305
+ specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible
306
+ values are: 'IPv4' and 'IPv6'.
307
+ """
308
+ I_PV4 = "IPv4"
309
+ """
310
+ IPv4 version
311
+ """
312
+ I_PV6 = "IPv6"
313
+ """
314
+ IPv6 version
315
+ """
316
+
317
+
318
+ class LinuxPatchAssessmentMode(str, Enum):
319
+ """
320
+ Specifies the mode of VM Guest Patch Assessment for the IaaS virtual
321
+ machine.<br /><br /> Possible values are:<br /><br /> **ImageDefault** - You
322
+ control the timing of patch assessments on a virtual machine. <br /><br />
323
+ **AutomaticByPlatform** - The platform will trigger periodic patch assessments.
324
+ The property provisionVMAgent must be true.
325
+ """
326
+ IMAGE_DEFAULT = "ImageDefault"
327
+ """
328
+ You control the timing of patch assessments on a virtual machine.
329
+ """
330
+ AUTOMATIC_BY_PLATFORM = "AutomaticByPlatform"
331
+ """
332
+ The platform will trigger periodic patch assessments.The property provisionVMAgent must be true.
333
+ """
334
+
335
+
336
+ class LinuxVMGuestPatchAutomaticByPlatformRebootSetting(str, Enum):
337
+ """
338
+ Specifies the reboot setting for all AutomaticByPlatform patch installation
339
+ operations.
340
+ """
341
+ UNKNOWN = "Unknown"
342
+ """
343
+ Unknown Reboot setting
344
+ """
345
+ IF_REQUIRED = "IfRequired"
346
+ """
347
+ IfRequired Reboot setting
348
+ """
349
+ NEVER = "Never"
350
+ """
351
+ Never Reboot setting
352
+ """
353
+ ALWAYS = "Always"
354
+ """
355
+ Always Reboot setting
356
+ """
357
+
358
+
359
+ class LinuxVMGuestPatchMode(str, Enum):
360
+ """
361
+ Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual
362
+ machines associated to virtual machine scale set with OrchestrationMode as
363
+ Flexible.<br /><br /> Possible values are:<br /><br /> **ImageDefault** - The
364
+ virtual machine's default patching configuration is used. <br /><br />
365
+ **AutomaticByPlatform** - The virtual machine will be automatically updated by
366
+ the platform. The property provisionVMAgent must be true
367
+ """
368
+ IMAGE_DEFAULT = "ImageDefault"
369
+ """
370
+ The virtual machine's default patching configuration is used.
371
+ """
372
+ AUTOMATIC_BY_PLATFORM = "AutomaticByPlatform"
373
+ """
374
+ The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true.
375
+ """
376
+
377
+
378
+ class LocalStorageDiskType(str, Enum):
379
+ """
380
+ Different kind of Local storage disk types supported by Azure VMs.
381
+ """
382
+ HDD = "HDD"
383
+ """
384
+ HDD DiskType.
385
+ """
386
+ SSD = "SSD"
387
+ """
388
+ SDD DiskType.
389
+ """
390
+
391
+
392
+ class ManagedServiceIdentityType(str, Enum):
393
+ """
394
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
395
+ """
396
+ NONE = "None"
397
+ SYSTEM_ASSIGNED = "SystemAssigned"
398
+ USER_ASSIGNED = "UserAssigned"
399
+ SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned,UserAssigned"
400
+
401
+
402
+ class Mode(str, Enum):
403
+ """
404
+ Specifies the mode that ProxyAgent will execute on if the feature is enabled.
405
+ ProxyAgent will start to audit or monitor but not enforce access control over
406
+ requests to host endpoints in Audit mode, while in Enforce mode it will enforce
407
+ access control. The default value is Enforce mode.
408
+ """
409
+ AUDIT = "Audit"
410
+ """
411
+ Audit Mode
412
+ """
413
+ ENFORCE = "Enforce"
414
+ """
415
+ Enforce Mode
416
+ """
417
+
418
+
419
+ class NetworkApiVersion(str, Enum):
420
+ """
421
+ specifies the Microsoft.Network API version used when creating networking
422
+ resources in the Network Interface Configurations for Virtual Machine Scale Set
423
+ with orchestration mode 'Flexible'
424
+ """
425
+ V2020_11_01 = "2020-11-01"
426
+ """
427
+ Initial version supported. Later versions are supported as well.
428
+ """
429
+
430
+
431
+ class NetworkInterfaceAuxiliaryMode(str, Enum):
432
+ """
433
+ Specifies whether the Auxiliary mode is enabled for the Network Interface
434
+ resource.
435
+ """
436
+ NONE = "None"
437
+ """
438
+ None Mode
439
+ """
440
+ ACCELERATED_CONNECTIONS = "AcceleratedConnections"
441
+ """
442
+ AcceleratedConnections Mode
443
+ """
444
+ FLOATING = "Floating"
445
+ """
446
+ Floating Mode
447
+ """
448
+
449
+
450
+ class NetworkInterfaceAuxiliarySku(str, Enum):
451
+ """
452
+ Specifies whether the Auxiliary sku is enabled for the Network Interface
453
+ resource.
454
+ """
455
+ NONE = "None"
456
+ """
457
+ no sku
458
+ """
459
+ A1 = "A1"
460
+ """
461
+ A1 sku
462
+ """
463
+ A2 = "A2"
464
+ """
465
+ A2 sku
466
+ """
467
+ A4 = "A4"
468
+ """
469
+ A4 sku
470
+ """
471
+ A8 = "A8"
472
+ """
473
+ A8 sku
474
+ """
475
+
476
+
477
+ class OperatingSystemTypes(str, Enum):
478
+ """
479
+ This property allows you to specify the type of the OS that is included in the
480
+ disk if creating a VM from user-image or a specialized VHD. Possible values
481
+ are: **Windows,** **Linux.**
482
+ """
483
+ WINDOWS = "Windows"
484
+ """
485
+ Windows OS type
486
+ """
487
+ LINUX = "Linux"
488
+ """
489
+ Linux OS type
490
+ """
491
+
492
+
493
+ class PassName(str, Enum):
494
+ """
495
+ The pass name. Currently, the only allowable value is OobeSystem.
496
+ """
497
+ OOBE_SYSTEM = "OobeSystem"
498
+
499
+
500
+ class ProtocolTypes(str, Enum):
501
+ """
502
+ Specifies the protocol of WinRM listener. Possible values are: **http,**
503
+ **https.**
504
+ """
505
+ HTTP = "Http"
506
+ """
507
+ Http protocol
508
+ """
509
+ HTTPS = "Https"
510
+ """
511
+ Https protocol
512
+ """
513
+
514
+
515
+ class PublicIPAddressSkuName(str, Enum):
516
+ """
517
+ Specify public IP sku name
518
+ """
519
+ BASIC = "Basic"
520
+ """
521
+ Basic sku name
522
+ """
523
+ STANDARD = "Standard"
524
+ """
525
+ Standard sku name
526
+ """
527
+
528
+
529
+ class PublicIPAddressSkuTier(str, Enum):
530
+ """
531
+ Specify public IP sku tier
532
+ """
533
+ REGIONAL = "Regional"
534
+ """
535
+ Regional sku tier
536
+ """
537
+ GLOBAL_ = "Global"
538
+ """
539
+ Global sku tier
540
+ """
541
+
542
+
543
+ class RegularPriorityAllocationStrategy(str, Enum):
544
+ """
545
+ Allocation strategy to follow when determining the VM sizes distribution for Regular VMs.
546
+ """
547
+ LOWEST_PRICE = "LowestPrice"
548
+ """
549
+ Default. VM sizes distribution will be determined to optimize for price.
550
+ """
551
+ PRIORITIZED = "Prioritized"
552
+ """
553
+ VM sizes distribution will be determined to optimize for the 'priority' as specified for each vm size.
554
+ """
555
+
556
+
557
+ class SecurityEncryptionTypes(str, Enum):
558
+ """
559
+ Specifies the EncryptionType of the managed disk. It is set to
560
+ DiskWithVMGuestState for encryption of the managed disk along with VMGuestState
561
+ blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and
562
+ NonPersistedTPM for not persisting firmware state in the VMGuestState blob..
563
+ **Note:** It can be set for only Confidential VMs.
564
+ """
565
+ VM_GUEST_STATE_ONLY = "VMGuestStateOnly"
566
+ """
567
+ EncryptionType of the managed disk is set to VMGuestStateOnly for encryption
568
+ of just the VMGuestState blob.
569
+ """
570
+ DISK_WITH_VM_GUEST_STATE = "DiskWithVMGuestState"
571
+ """
572
+ EncryptionType of the managed disk is set to DiskWithVMGuestState for encryption
573
+ of the managed disk along with VMGuestState blob.
574
+ """
575
+ NON_PERSISTED_TPM = "NonPersistedTPM"
576
+ """
577
+ EncryptionType of the managed disk is set to NonPersistedTPM for not persisting
578
+ firmware state in the VMGuestState blob.
579
+ """
580
+
581
+
582
+ class SecurityTypes(str, Enum):
583
+ """
584
+ Specifies the SecurityType of the virtual machine. It has to be set to any
585
+ specified value to enable UefiSettings. The default behavior is: UefiSettings
586
+ will not be enabled unless this property is set.
587
+ """
588
+ TRUSTED_LAUNCH = "TrustedLaunch"
589
+ """
590
+ TrustedLaunch security type
591
+ """
592
+ CONFIDENTIAL_VM = "ConfidentialVM"
593
+ """
594
+ ConfidentialVM security type
595
+ """
596
+
597
+
598
+ class SettingNames(str, Enum):
599
+ """
600
+ Specifies the name of the setting to which the content applies. Possible values
601
+ are: FirstLogonCommands and AutoLogon.
602
+ """
603
+ AUTO_LOGON = "AutoLogon"
604
+ """
605
+ AutoLogon setting
606
+ """
607
+ FIRST_LOGON_COMMANDS = "FirstLogonCommands"
608
+ """
609
+ FirstLogonCommands setting
610
+ """
611
+
612
+
613
+ class SpotAllocationStrategy(str, Enum):
614
+ """
615
+ Allocation strategy to follow when determining the VM sizes distribution for Spot VMs.
616
+ """
617
+ PRICE_CAPACITY_OPTIMIZED = "PriceCapacityOptimized"
618
+ """
619
+ Default. VM sizes distribution will be determined to optimize for both price and capacity.
620
+ """
621
+ LOWEST_PRICE = "LowestPrice"
622
+ """
623
+ VM sizes distribution will be determined to optimize for price. Note: Capacity will still be considered here but will be given much less weight.
624
+ """
625
+ CAPACITY_OPTIMIZED = "CapacityOptimized"
626
+ """
627
+ VM sizes distribution will be determined to optimize for capacity.
628
+ """
629
+
630
+
631
+ class StorageAccountTypes(str, Enum):
632
+ """
633
+ Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can
634
+ only be used with data disks, it cannot be used with OS Disk.
635
+ """
636
+ STANDARD_LRS = "Standard_LRS"
637
+ """
638
+ Standard_LRS option.
639
+ """
640
+ PREMIUM_LRS = "Premium_LRS"
641
+ """
642
+ Premium_LRS option.
643
+ """
644
+ STANDARD_SS_D_LRS = "StandardSSD_LRS"
645
+ """
646
+ StandardSSD_LRS option.
647
+ """
648
+ ULTRA_SS_D_LRS = "UltraSSD_LRS"
649
+ """
650
+ UltraSSD_LRS option.
651
+ """
652
+ PREMIUM_ZRS = "Premium_ZRS"
653
+ """
654
+ Premium_ZRS option.
655
+ """
656
+ STANDARD_SS_D_ZRS = "StandardSSD_ZRS"
657
+ """
658
+ StandardSSD_ZRS option.
659
+ """
660
+ PREMIUM_V2_LRS = "PremiumV2_LRS"
661
+ """
662
+ PremiumV2_LRS option.
663
+ """
664
+
665
+
666
+ class VMAttributeSupport(str, Enum):
667
+ """
668
+ Specifies whether the VMSize supporting RDMA (Remote Direct Memory Access) should be used to build Fleet or not.
669
+ """
670
+ EXCLUDED = "Excluded"
671
+ """
672
+ All VMSizes having the feature support will be excluded.
673
+ """
674
+ INCLUDED = "Included"
675
+ """
676
+ VMSizes that have the feature support and that do not have the feature support will be used. Included is a union of Excluded and Required.
677
+ """
678
+ REQUIRED = "Required"
679
+ """
680
+ Only the VMSizes having the feature support will be used.
681
+ """
682
+
683
+
684
+ class VMCategory(str, Enum):
685
+ """
686
+ VMCategories defined for Azure VMs.
687
+ See: https://learn.microsoft.com/en-us/azure/virtual-machines/sizes/overview?tabs=breakdownseries%2Cgeneralsizelist%2Ccomputesizelist%2Cmemorysizelist%2Cstoragesizelist%2Cgpusizelist%2Cfpgasizelist%2Chpcsizelist#general-purpose
688
+ """
689
+ GENERAL_PURPOSE = "GeneralPurpose"
690
+ """
691
+ General purpose VM sizes provide balanced CPU-to-memory ratio. Ideal for testing and development, small to medium databases, and low to medium traffic web servers.
692
+ """
693
+ COMPUTE_OPTIMIZED = "ComputeOptimized"
694
+ """
695
+ Compute optimized VM sizes have a high CPU-to-memory ratio. These sizes are good for medium traffic web servers, network appliances, batch processes, and application servers.
696
+ """
697
+ MEMORY_OPTIMIZED = "MemoryOptimized"
698
+ """
699
+ Memory optimized VM sizes offer a high memory-to-CPU ratio that is great for relational database servers, medium to large caches, and in-memory analytics.
700
+ """
701
+ STORAGE_OPTIMIZED = "StorageOptimized"
702
+ """
703
+ Storage optimized virtual machine (VM) sizes offer high disk throughput and IO, and are ideal for Big Data, SQL, NoSQL databases, data warehousing, and large transactional databases.
704
+ Examples include Cassandra, MongoDB, Cloudera, and Redis.
705
+ """
706
+ GPU_ACCELERATED = "GpuAccelerated"
707
+ """
708
+ GPU optimized VM sizes are specialized virtual machines available with single, multiple, or fractional GPUs.
709
+ These sizes are designed for compute-intensive, graphics-intensive, and visualization workloads.
710
+ """
711
+ FPGA_ACCELERATED = "FpgaAccelerated"
712
+ """
713
+ FPGA optimized VM sizes are specialized virtual machines available with single or multiple FPGA.
714
+ These sizes are designed for compute-intensive workloads. This article provides information about the number and type of FPGA, vCPUs, data disks, and NICs.
715
+ Storage throughput and network bandwidth are also included for each size in this grouping.
716
+ """
717
+ HIGH_PERFORMANCE_COMPUTE = "HighPerformanceCompute"
718
+ """
719
+ Azure High Performance Compute VMs are optimized for various HPC workloads such as computational fluid dynamics, finite element analysis, frontend and backend EDA,
720
+ rendering, molecular dynamics, computational geo science, weather simulation, and financial risk analysis.
721
+ """
722
+
723
+
724
+ class WindowsPatchAssessmentMode(str, Enum):
725
+ """
726
+ Specifies the mode of VM Guest patch assessment for the IaaS virtual
727
+ machine.<br /><br /> Possible values are:<br /><br /> **ImageDefault** - You
728
+ control the timing of patch assessments on a virtual machine.<br /><br />
729
+ **AutomaticByPlatform** - The platform will trigger periodic patch assessments.
730
+ The property provisionVMAgent must be true.
731
+ """
732
+ IMAGE_DEFAULT = "ImageDefault"
733
+ """
734
+ You control the timing of patch assessments on a virtual machine.
735
+ """
736
+ AUTOMATIC_BY_PLATFORM = "AutomaticByPlatform"
737
+ """
738
+ The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
739
+ """
740
+
741
+
742
+ class WindowsVMGuestPatchAutomaticByPlatformRebootSetting(str, Enum):
743
+ """
744
+ Specifies the reboot setting for all AutomaticByPlatform patch installation
745
+ operations.
746
+ """
747
+ UNKNOWN = "Unknown"
748
+ """
749
+ Unknown Reboot setting
750
+ """
751
+ IF_REQUIRED = "IfRequired"
752
+ """
753
+ IfRequired Reboot setting
754
+ """
755
+ NEVER = "Never"
756
+ """
757
+ Never Reboot setting
758
+ """
759
+ ALWAYS = "Always"
760
+ """
761
+ Always Reboot setting
762
+ """
763
+
764
+
765
+ class WindowsVMGuestPatchMode(str, Enum):
766
+ """
767
+ Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual
768
+ machines associated to virtual machine scale set with OrchestrationMode as
769
+ Flexible.<br /><br /> Possible values are:<br /><br /> **Manual** - You
770
+ control the application of patches to a virtual machine. You do this by
771
+ applying patches manually inside the VM. In this mode, automatic updates are
772
+ disabled; the property WindowsConfiguration.enableAutomaticUpdates must be
773
+ false<br /><br /> **AutomaticByOS** - The virtual machine will automatically be
774
+ updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates
775
+ must be true. <br /><br /> **AutomaticByPlatform** - the virtual machine will
776
+ automatically updated by the platform. The properties provisionVMAgent and
777
+ WindowsConfiguration.enableAutomaticUpdates must be true
778
+ """
779
+ MANUAL = "Manual"
780
+ """
781
+ You control the application of patches to a virtual machine.
782
+ You do this by applying patches manually inside the VM. In this mode,
783
+ automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates
784
+ must be false
785
+ """
786
+ AUTOMATIC_BY_OS = "AutomaticByOS"
787
+ """
788
+ The virtual machine will automatically be updated by the OS.
789
+ The property WindowsConfiguration.enableAutomaticUpdates must be true.
790
+ """
791
+ AUTOMATIC_BY_PLATFORM = "AutomaticByPlatform"
792
+ """
793
+ The virtual machine will automatically updated by the platform. The properties
794
+ provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true.
795
+ """