pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.1.0a1751948424__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.
Files changed (282) hide show
  1. pulumi_oci/__init__.py +299 -0
  2. pulumi_oci/capacitymanagement/__init__.py +18 -0
  3. pulumi_oci/capacitymanagement/_inputs.py +459 -0
  4. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
  5. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
  6. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
  7. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
  8. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
  9. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
  10. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
  11. pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
  12. pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
  13. pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
  14. pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
  15. pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
  16. pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
  17. pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
  18. pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
  19. pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
  20. pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
  21. pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
  22. pulumi_oci/capacitymanagement/outputs.py +3499 -1230
  23. pulumi_oci/containerengine/get_cluster.py +7 -7
  24. pulumi_oci/core/__init__.py +4 -0
  25. pulumi_oci/core/_inputs.py +477 -0
  26. pulumi_oci/core/compute_host.py +910 -0
  27. pulumi_oci/core/compute_host_group.py +648 -0
  28. pulumi_oci/core/dedicated_vm_host.py +56 -0
  29. pulumi_oci/core/get_compute_host.py +72 -1
  30. pulumi_oci/core/get_compute_host_group.py +269 -0
  31. pulumi_oci/core/get_compute_host_groups.py +148 -0
  32. pulumi_oci/core/get_compute_hosts.py +37 -1
  33. pulumi_oci/core/get_dedicated_vm_host.py +29 -1
  34. pulumi_oci/core/outputs.py +912 -24
  35. pulumi_oci/database/__init__.py +2 -0
  36. pulumi_oci/database/_inputs.py +739 -52
  37. pulumi_oci/database/autonomous_container_database.py +141 -12
  38. pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
  39. pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
  40. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
  41. pulumi_oci/database/autonomous_database_software_image.py +28 -0
  42. pulumi_oci/database/autonomous_vm_cluster.py +28 -0
  43. pulumi_oci/database/backup_destination.py +28 -0
  44. pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
  45. pulumi_oci/database/cloud_vm_cluster.py +82 -7
  46. pulumi_oci/database/database.py +28 -0
  47. pulumi_oci/database/database_software_image.py +28 -0
  48. pulumi_oci/database/database_upgrade.py +28 -0
  49. pulumi_oci/database/db_home.py +28 -0
  50. pulumi_oci/database/db_node.py +28 -0
  51. pulumi_oci/database/db_system.py +28 -0
  52. pulumi_oci/database/exadata_infrastructure.py +28 -0
  53. pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
  54. pulumi_oci/database/external_container_database.py +28 -0
  55. pulumi_oci/database/external_database_connector.py +28 -0
  56. pulumi_oci/database/external_non_container_database.py +28 -0
  57. pulumi_oci/database/external_pluggable_database.py +28 -0
  58. pulumi_oci/database/get_autonomous_container_database.py +52 -2
  59. pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
  60. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
  61. pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
  62. pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
  63. pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
  64. pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
  65. pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
  66. pulumi_oci/database/get_backup_destination.py +15 -1
  67. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
  68. pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
  69. pulumi_oci/database/get_database.py +15 -1
  70. pulumi_oci/database/get_database_software_image.py +15 -1
  71. pulumi_oci/database/get_db_home.py +15 -1
  72. pulumi_oci/database/get_db_node.py +15 -1
  73. pulumi_oci/database/get_db_nodes.py +2 -2
  74. pulumi_oci/database/get_db_server.py +15 -1
  75. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  76. pulumi_oci/database/get_external_container_database.py +15 -1
  77. pulumi_oci/database/get_external_database_connector.py +15 -1
  78. pulumi_oci/database/get_external_non_container_database.py +15 -1
  79. pulumi_oci/database/get_external_pluggable_database.py +15 -1
  80. pulumi_oci/database/get_key_store.py +15 -1
  81. pulumi_oci/database/get_maintenance_run.py +15 -1
  82. pulumi_oci/database/get_oneoff_patch.py +15 -1
  83. pulumi_oci/database/get_pluggable_database.py +15 -1
  84. pulumi_oci/database/get_vm_cluster.py +15 -1
  85. pulumi_oci/database/get_vm_cluster_network.py +15 -1
  86. pulumi_oci/database/key_store.py +28 -0
  87. pulumi_oci/database/maintenance_run.py +28 -0
  88. pulumi_oci/database/oneoff_patch.py +28 -0
  89. pulumi_oci/database/outputs.py +1624 -54
  90. pulumi_oci/database/pluggable_database.py +28 -0
  91. pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
  92. pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
  93. pulumi_oci/database/vm_cluster.py +28 -0
  94. pulumi_oci/database/vm_cluster_network.py +28 -0
  95. pulumi_oci/databasemanagement/__init__.py +7 -0
  96. pulumi_oci/databasemanagement/_inputs.py +196 -0
  97. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
  98. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
  99. pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
  100. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
  101. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
  102. pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
  105. pulumi_oci/databasemanagement/outputs.py +1330 -19
  106. pulumi_oci/databasemigration/_inputs.py +94 -0
  107. pulumi_oci/databasemigration/get_migration.py +15 -1
  108. pulumi_oci/databasemigration/get_migrations.py +15 -1
  109. pulumi_oci/databasemigration/job.py +28 -0
  110. pulumi_oci/databasemigration/migration.py +52 -3
  111. pulumi_oci/databasemigration/outputs.py +73 -0
  112. pulumi_oci/dataflow/_inputs.py +20 -0
  113. pulumi_oci/dataflow/outputs.py +36 -0
  114. pulumi_oci/fleetappsmanagement/__init__.py +48 -0
  115. pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
  116. pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
  117. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
  118. pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
  119. pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
  120. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  121. pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
  122. pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
  123. pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
  124. pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
  125. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
  126. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
  127. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
  128. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
  129. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
  130. pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
  131. pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
  132. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
  133. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
  134. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
  135. pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
  136. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
  137. pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
  138. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
  139. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
  140. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  141. pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
  142. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
  143. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
  144. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
  145. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
  146. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
  147. pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
  148. pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
  149. pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
  150. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
  151. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
  152. pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
  153. pulumi_oci/fleetappsmanagement/get_property.py +1 -1
  154. pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
  155. pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
  156. pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
  157. pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
  158. pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
  159. pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
  160. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
  161. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
  162. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
  163. pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
  164. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
  165. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
  166. pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
  167. pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
  168. pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
  169. pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
  170. pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
  171. pulumi_oci/fleetappsmanagement/patch.py +980 -0
  172. pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
  173. pulumi_oci/fleetappsmanagement/property.py +28 -27
  174. pulumi_oci/fleetappsmanagement/provision.py +1195 -0
  175. pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
  176. pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
  177. pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
  178. pulumi_oci/fleetappsmanagement/task_record.py +786 -0
  179. pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
  180. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
  181. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
  182. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
  183. pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
  184. pulumi_oci/goldengate/_inputs.py +449 -3
  185. pulumi_oci/goldengate/connection.py +200 -56
  186. pulumi_oci/goldengate/get_connection.py +59 -28
  187. pulumi_oci/goldengate/get_connections.py +0 -3
  188. pulumi_oci/goldengate/outputs.py +886 -22
  189. pulumi_oci/loadbalancer/_inputs.py +24 -6
  190. pulumi_oci/loadbalancer/backend.py +35 -7
  191. pulumi_oci/loadbalancer/backend_set.py +35 -7
  192. pulumi_oci/loadbalancer/listener.py +7 -7
  193. pulumi_oci/loadbalancer/load_balancer.py +81 -0
  194. pulumi_oci/loadbalancer/outputs.py +29 -10
  195. pulumi_oci/loganalytics/__init__.py +3 -0
  196. pulumi_oci/loganalytics/_inputs.py +123 -0
  197. pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
  198. pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
  199. pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
  200. pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
  201. pulumi_oci/loganalytics/outputs.py +258 -0
  202. pulumi_oci/mysql/_inputs.py +274 -0
  203. pulumi_oci/mysql/get_mysql_backup.py +29 -1
  204. pulumi_oci/mysql/get_mysql_backups.py +23 -1
  205. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  206. pulumi_oci/mysql/get_replica.py +15 -1
  207. pulumi_oci/mysql/mysql_backup.py +98 -2
  208. pulumi_oci/mysql/mysql_db_system.py +57 -0
  209. pulumi_oci/mysql/outputs.py +594 -0
  210. pulumi_oci/mysql/replica.py +28 -0
  211. pulumi_oci/nosql/__init__.py +2 -0
  212. pulumi_oci/nosql/_inputs.py +129 -3
  213. pulumi_oci/nosql/configuration.py +383 -0
  214. pulumi_oci/nosql/get_configuration.py +162 -0
  215. pulumi_oci/nosql/index.py +7 -7
  216. pulumi_oci/nosql/outputs.py +164 -2
  217. pulumi_oci/nosql/table_replica.py +9 -9
  218. pulumi_oci/oci/__init__.py +56 -0
  219. pulumi_oci/oci/_inputs.py +1615 -0
  220. pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
  221. pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
  222. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
  223. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
  224. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
  225. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
  226. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
  227. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
  228. pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
  229. pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
  230. pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
  231. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
  232. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
  233. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
  234. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
  235. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
  236. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
  237. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
  238. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
  239. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
  240. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
  241. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
  242. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
  243. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
  244. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
  245. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
  246. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
  247. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
  248. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
  249. pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
  250. pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
  251. pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
  252. pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
  253. pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
  254. pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
  255. pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
  256. pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
  257. pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
  258. pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
  259. pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
  260. pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
  261. pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
  262. pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
  263. pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
  264. pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
  265. pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
  266. pulumi_oci/oci/outputs.py +5617 -0
  267. pulumi_oci/pulumi-plugin.json +1 -1
  268. pulumi_oci/redis/__init__.py +8 -0
  269. pulumi_oci/redis/_inputs.py +179 -0
  270. pulumi_oci/redis/get_oci_cache_user.py +283 -0
  271. pulumi_oci/redis/get_oci_cache_users.py +192 -0
  272. pulumi_oci/redis/oci_cache_user.py +695 -0
  273. pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
  274. pulumi_oci/redis/outputs.py +330 -0
  275. pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
  276. pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
  277. pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
  278. pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
  279. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
  280. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
  281. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
  282. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -57,10 +57,15 @@ __all__ = [
57
57
  'ComputeCapacityReservationInstanceReservationConfigClusterConfig',
58
58
  'ComputeCapacityReservationInstanceReservationConfigInstanceShapeConfig',
59
59
  'ComputeCapacityTopologyCapacitySource',
60
+ 'ComputeHostConfigurationData',
61
+ 'ComputeHostConfigurationDataCheckDetail',
62
+ 'ComputeHostGroupConfiguration',
63
+ 'ComputeHostRecycleDetail',
60
64
  'CrossConnectGroupMacsecProperties',
61
65
  'CrossConnectGroupMacsecPropertiesPrimaryKey',
62
66
  'CrossConnectMacsecProperties',
63
67
  'CrossConnectMacsecPropertiesPrimaryKey',
68
+ 'DedicatedVmHostCapacityBin',
64
69
  'DedicatedVmHostPlacementConstraintDetails',
65
70
  'DefaultDhcpOptionsOption',
66
71
  'DefaultRouteTableRouteRule',
@@ -349,6 +354,14 @@ __all__ = [
349
354
  'GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionResult',
350
355
  'GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionItemResult',
351
356
  'GetComputeGpuMemoryFabricsFilterResult',
357
+ 'GetComputeHostConfigurationDataResult',
358
+ 'GetComputeHostConfigurationDataCheckDetailResult',
359
+ 'GetComputeHostGroupConfigurationResult',
360
+ 'GetComputeHostGroupsComputeHostGroupCollectionResult',
361
+ 'GetComputeHostGroupsComputeHostGroupCollectionItemResult',
362
+ 'GetComputeHostGroupsComputeHostGroupCollectionItemConfigurationResult',
363
+ 'GetComputeHostGroupsFilterResult',
364
+ 'GetComputeHostRecycleDetailResult',
352
365
  'GetComputeHostsComputeHostCollectionResult',
353
366
  'GetComputeHostsComputeHostCollectionItemResult',
354
367
  'GetComputeHostsFilterResult',
@@ -379,6 +392,7 @@ __all__ = [
379
392
  'GetCrossConnectsCrossConnectMacsecPropertyResult',
380
393
  'GetCrossConnectsCrossConnectMacsecPropertyPrimaryKeyResult',
381
394
  'GetCrossConnectsFilterResult',
395
+ 'GetDedicatedVmHostCapacityBinResult',
382
396
  'GetDedicatedVmHostInstanceShapesDedicatedVmHostInstanceShapeResult',
383
397
  'GetDedicatedVmHostInstanceShapesFilterResult',
384
398
  'GetDedicatedVmHostInstancesDedicatedVmHostInstanceResult',
@@ -387,6 +401,7 @@ __all__ = [
387
401
  'GetDedicatedVmHostShapesDedicatedVmHostShapeResult',
388
402
  'GetDedicatedVmHostShapesFilterResult',
389
403
  'GetDedicatedVmHostsDedicatedVmHostResult',
404
+ 'GetDedicatedVmHostsDedicatedVmHostCapacityBinResult',
390
405
  'GetDedicatedVmHostsDedicatedVmHostPlacementConstraintDetailResult',
391
406
  'GetDedicatedVmHostsFilterResult',
392
407
  'GetDhcpOptionsFilterResult',
@@ -3374,6 +3389,256 @@ class ComputeCapacityTopologyCapacitySource(dict):
3374
3389
  return pulumi.get(self, "compartment_id")
3375
3390
 
3376
3391
 
3392
+ @pulumi.output_type
3393
+ class ComputeHostConfigurationData(dict):
3394
+ @staticmethod
3395
+ def __key_warning(key: str):
3396
+ suggest = None
3397
+ if key == "checkDetails":
3398
+ suggest = "check_details"
3399
+ elif key == "timeLastApply":
3400
+ suggest = "time_last_apply"
3401
+
3402
+ if suggest:
3403
+ pulumi.log.warn(f"Key '{key}' not found in ComputeHostConfigurationData. Access the value via the '{suggest}' property getter instead.")
3404
+
3405
+ def __getitem__(self, key: str) -> Any:
3406
+ ComputeHostConfigurationData.__key_warning(key)
3407
+ return super().__getitem__(key)
3408
+
3409
+ def get(self, key: str, default = None) -> Any:
3410
+ ComputeHostConfigurationData.__key_warning(key)
3411
+ return super().get(key, default)
3412
+
3413
+ def __init__(__self__, *,
3414
+ check_details: Optional[Sequence['outputs.ComputeHostConfigurationDataCheckDetail']] = None,
3415
+ time_last_apply: Optional[builtins.str] = None):
3416
+ """
3417
+ :param Sequence['ComputeHostConfigurationDataCheckDetailArgs'] check_details: Compute Host Group Configuration Details Check
3418
+ :param builtins.str time_last_apply: The time that was last applied.
3419
+ """
3420
+ if check_details is not None:
3421
+ pulumi.set(__self__, "check_details", check_details)
3422
+ if time_last_apply is not None:
3423
+ pulumi.set(__self__, "time_last_apply", time_last_apply)
3424
+
3425
+ @property
3426
+ @pulumi.getter(name="checkDetails")
3427
+ def check_details(self) -> Optional[Sequence['outputs.ComputeHostConfigurationDataCheckDetail']]:
3428
+ """
3429
+ Compute Host Group Configuration Details Check
3430
+ """
3431
+ return pulumi.get(self, "check_details")
3432
+
3433
+ @property
3434
+ @pulumi.getter(name="timeLastApply")
3435
+ def time_last_apply(self) -> Optional[builtins.str]:
3436
+ """
3437
+ The time that was last applied.
3438
+ """
3439
+ return pulumi.get(self, "time_last_apply")
3440
+
3441
+
3442
+ @pulumi.output_type
3443
+ class ComputeHostConfigurationDataCheckDetail(dict):
3444
+ @staticmethod
3445
+ def __key_warning(key: str):
3446
+ suggest = None
3447
+ if key == "configurationState":
3448
+ suggest = "configuration_state"
3449
+ elif key == "firmwareBundleId":
3450
+ suggest = "firmware_bundle_id"
3451
+ elif key == "recycleLevel":
3452
+ suggest = "recycle_level"
3453
+
3454
+ if suggest:
3455
+ pulumi.log.warn(f"Key '{key}' not found in ComputeHostConfigurationDataCheckDetail. Access the value via the '{suggest}' property getter instead.")
3456
+
3457
+ def __getitem__(self, key: str) -> Any:
3458
+ ComputeHostConfigurationDataCheckDetail.__key_warning(key)
3459
+ return super().__getitem__(key)
3460
+
3461
+ def get(self, key: str, default = None) -> Any:
3462
+ ComputeHostConfigurationDataCheckDetail.__key_warning(key)
3463
+ return super().get(key, default)
3464
+
3465
+ def __init__(__self__, *,
3466
+ configuration_state: Optional[builtins.str] = None,
3467
+ firmware_bundle_id: Optional[builtins.str] = None,
3468
+ recycle_level: Optional[builtins.str] = None,
3469
+ type: Optional[builtins.str] = None):
3470
+ """
3471
+ :param builtins.str configuration_state: Configuration state of the Compute Bare Metal Host.
3472
+ :param builtins.str firmware_bundle_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique firmware bundle associated with the Host Configuration.
3473
+ :param builtins.str recycle_level: Preferred recycle level for hosts associated with the reservation config.
3474
+ * `SKIP_RECYCLE` - Skips host wipe.
3475
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
3476
+ :param builtins.str type: The type of configuration
3477
+ """
3478
+ if configuration_state is not None:
3479
+ pulumi.set(__self__, "configuration_state", configuration_state)
3480
+ if firmware_bundle_id is not None:
3481
+ pulumi.set(__self__, "firmware_bundle_id", firmware_bundle_id)
3482
+ if recycle_level is not None:
3483
+ pulumi.set(__self__, "recycle_level", recycle_level)
3484
+ if type is not None:
3485
+ pulumi.set(__self__, "type", type)
3486
+
3487
+ @property
3488
+ @pulumi.getter(name="configurationState")
3489
+ def configuration_state(self) -> Optional[builtins.str]:
3490
+ """
3491
+ Configuration state of the Compute Bare Metal Host.
3492
+ """
3493
+ return pulumi.get(self, "configuration_state")
3494
+
3495
+ @property
3496
+ @pulumi.getter(name="firmwareBundleId")
3497
+ def firmware_bundle_id(self) -> Optional[builtins.str]:
3498
+ """
3499
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique firmware bundle associated with the Host Configuration.
3500
+ """
3501
+ return pulumi.get(self, "firmware_bundle_id")
3502
+
3503
+ @property
3504
+ @pulumi.getter(name="recycleLevel")
3505
+ def recycle_level(self) -> Optional[builtins.str]:
3506
+ """
3507
+ Preferred recycle level for hosts associated with the reservation config.
3508
+ * `SKIP_RECYCLE` - Skips host wipe.
3509
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
3510
+ """
3511
+ return pulumi.get(self, "recycle_level")
3512
+
3513
+ @property
3514
+ @pulumi.getter
3515
+ def type(self) -> Optional[builtins.str]:
3516
+ """
3517
+ The type of configuration
3518
+ """
3519
+ return pulumi.get(self, "type")
3520
+
3521
+
3522
+ @pulumi.output_type
3523
+ class ComputeHostGroupConfiguration(dict):
3524
+ @staticmethod
3525
+ def __key_warning(key: str):
3526
+ suggest = None
3527
+ if key == "firmwareBundleId":
3528
+ suggest = "firmware_bundle_id"
3529
+ elif key == "recycleLevel":
3530
+ suggest = "recycle_level"
3531
+
3532
+ if suggest:
3533
+ pulumi.log.warn(f"Key '{key}' not found in ComputeHostGroupConfiguration. Access the value via the '{suggest}' property getter instead.")
3534
+
3535
+ def __getitem__(self, key: str) -> Any:
3536
+ ComputeHostGroupConfiguration.__key_warning(key)
3537
+ return super().__getitem__(key)
3538
+
3539
+ def get(self, key: str, default = None) -> Any:
3540
+ ComputeHostGroupConfiguration.__key_warning(key)
3541
+ return super().get(key, default)
3542
+
3543
+ def __init__(__self__, *,
3544
+ firmware_bundle_id: Optional[builtins.str] = None,
3545
+ recycle_level: Optional[builtins.str] = None,
3546
+ target: Optional[builtins.str] = None):
3547
+ """
3548
+ :param builtins.str firmware_bundle_id: (Updatable) The OCID for firmware bundle
3549
+ :param builtins.str recycle_level: (Updatable) Preferred recycle level for hosts associated with the reservation config.
3550
+ * `SKIP_RECYCLE` - Skips host wipe.
3551
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
3552
+ :param builtins.str target: (Updatable) Either the platform name or compute shape that the configuration is targeting
3553
+ """
3554
+ if firmware_bundle_id is not None:
3555
+ pulumi.set(__self__, "firmware_bundle_id", firmware_bundle_id)
3556
+ if recycle_level is not None:
3557
+ pulumi.set(__self__, "recycle_level", recycle_level)
3558
+ if target is not None:
3559
+ pulumi.set(__self__, "target", target)
3560
+
3561
+ @property
3562
+ @pulumi.getter(name="firmwareBundleId")
3563
+ def firmware_bundle_id(self) -> Optional[builtins.str]:
3564
+ """
3565
+ (Updatable) The OCID for firmware bundle
3566
+ """
3567
+ return pulumi.get(self, "firmware_bundle_id")
3568
+
3569
+ @property
3570
+ @pulumi.getter(name="recycleLevel")
3571
+ def recycle_level(self) -> Optional[builtins.str]:
3572
+ """
3573
+ (Updatable) Preferred recycle level for hosts associated with the reservation config.
3574
+ * `SKIP_RECYCLE` - Skips host wipe.
3575
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
3576
+ """
3577
+ return pulumi.get(self, "recycle_level")
3578
+
3579
+ @property
3580
+ @pulumi.getter
3581
+ def target(self) -> Optional[builtins.str]:
3582
+ """
3583
+ (Updatable) Either the platform name or compute shape that the configuration is targeting
3584
+ """
3585
+ return pulumi.get(self, "target")
3586
+
3587
+
3588
+ @pulumi.output_type
3589
+ class ComputeHostRecycleDetail(dict):
3590
+ @staticmethod
3591
+ def __key_warning(key: str):
3592
+ suggest = None
3593
+ if key == "computeHostGroupId":
3594
+ suggest = "compute_host_group_id"
3595
+ elif key == "recycleLevel":
3596
+ suggest = "recycle_level"
3597
+
3598
+ if suggest:
3599
+ pulumi.log.warn(f"Key '{key}' not found in ComputeHostRecycleDetail. Access the value via the '{suggest}' property getter instead.")
3600
+
3601
+ def __getitem__(self, key: str) -> Any:
3602
+ ComputeHostRecycleDetail.__key_warning(key)
3603
+ return super().__getitem__(key)
3604
+
3605
+ def get(self, key: str, default = None) -> Any:
3606
+ ComputeHostRecycleDetail.__key_warning(key)
3607
+ return super().get(key, default)
3608
+
3609
+ def __init__(__self__, *,
3610
+ compute_host_group_id: Optional[builtins.str] = None,
3611
+ recycle_level: Optional[builtins.str] = None):
3612
+ """
3613
+ :param builtins.str compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
3614
+ :param builtins.str recycle_level: Preferred recycle level for hosts associated with the reservation config.
3615
+ * `SKIP_RECYCLE` - Skips host wipe.
3616
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
3617
+ """
3618
+ if compute_host_group_id is not None:
3619
+ pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
3620
+ if recycle_level is not None:
3621
+ pulumi.set(__self__, "recycle_level", recycle_level)
3622
+
3623
+ @property
3624
+ @pulumi.getter(name="computeHostGroupId")
3625
+ def compute_host_group_id(self) -> Optional[builtins.str]:
3626
+ """
3627
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
3628
+ """
3629
+ return pulumi.get(self, "compute_host_group_id")
3630
+
3631
+ @property
3632
+ @pulumi.getter(name="recycleLevel")
3633
+ def recycle_level(self) -> Optional[builtins.str]:
3634
+ """
3635
+ Preferred recycle level for hosts associated with the reservation config.
3636
+ * `SKIP_RECYCLE` - Skips host wipe.
3637
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
3638
+ """
3639
+ return pulumi.get(self, "recycle_level")
3640
+
3641
+
3377
3642
  @pulumi.output_type
3378
3643
  class CrossConnectGroupMacsecProperties(dict):
3379
3644
  @staticmethod
@@ -3692,6 +3957,112 @@ class CrossConnectMacsecPropertiesPrimaryKey(dict):
3692
3957
  return pulumi.get(self, "connectivity_association_name_secret_version")
3693
3958
 
3694
3959
 
3960
+ @pulumi.output_type
3961
+ class DedicatedVmHostCapacityBin(dict):
3962
+ @staticmethod
3963
+ def __key_warning(key: str):
3964
+ suggest = None
3965
+ if key == "capacityIndex":
3966
+ suggest = "capacity_index"
3967
+ elif key == "remainingMemoryInGbs":
3968
+ suggest = "remaining_memory_in_gbs"
3969
+ elif key == "remainingOcpus":
3970
+ suggest = "remaining_ocpus"
3971
+ elif key == "supportedShapes":
3972
+ suggest = "supported_shapes"
3973
+ elif key == "totalMemoryInGbs":
3974
+ suggest = "total_memory_in_gbs"
3975
+ elif key == "totalOcpus":
3976
+ suggest = "total_ocpus"
3977
+
3978
+ if suggest:
3979
+ pulumi.log.warn(f"Key '{key}' not found in DedicatedVmHostCapacityBin. Access the value via the '{suggest}' property getter instead.")
3980
+
3981
+ def __getitem__(self, key: str) -> Any:
3982
+ DedicatedVmHostCapacityBin.__key_warning(key)
3983
+ return super().__getitem__(key)
3984
+
3985
+ def get(self, key: str, default = None) -> Any:
3986
+ DedicatedVmHostCapacityBin.__key_warning(key)
3987
+ return super().get(key, default)
3988
+
3989
+ def __init__(__self__, *,
3990
+ capacity_index: Optional[builtins.int] = None,
3991
+ remaining_memory_in_gbs: Optional[builtins.float] = None,
3992
+ remaining_ocpus: Optional[builtins.float] = None,
3993
+ supported_shapes: Optional[Sequence[builtins.str]] = None,
3994
+ total_memory_in_gbs: Optional[builtins.float] = None,
3995
+ total_ocpus: Optional[builtins.float] = None):
3996
+ """
3997
+ :param builtins.int capacity_index: Zero-based index for the corresponding capacity bucket.
3998
+ :param builtins.float remaining_memory_in_gbs: The current available memory of the dedicated VM host, in GBs.
3999
+ :param builtins.float remaining_ocpus: The current available OCPUs of the dedicated VM host.
4000
+ :param Sequence[builtins.str] supported_shapes: List of VMI shapes supported on each capacity bucket.
4001
+ :param builtins.float total_memory_in_gbs: The current total memory of the dedicated VM host, in GBs.
4002
+ :param builtins.float total_ocpus: The current total OCPUs of the dedicated VM host.
4003
+ """
4004
+ if capacity_index is not None:
4005
+ pulumi.set(__self__, "capacity_index", capacity_index)
4006
+ if remaining_memory_in_gbs is not None:
4007
+ pulumi.set(__self__, "remaining_memory_in_gbs", remaining_memory_in_gbs)
4008
+ if remaining_ocpus is not None:
4009
+ pulumi.set(__self__, "remaining_ocpus", remaining_ocpus)
4010
+ if supported_shapes is not None:
4011
+ pulumi.set(__self__, "supported_shapes", supported_shapes)
4012
+ if total_memory_in_gbs is not None:
4013
+ pulumi.set(__self__, "total_memory_in_gbs", total_memory_in_gbs)
4014
+ if total_ocpus is not None:
4015
+ pulumi.set(__self__, "total_ocpus", total_ocpus)
4016
+
4017
+ @property
4018
+ @pulumi.getter(name="capacityIndex")
4019
+ def capacity_index(self) -> Optional[builtins.int]:
4020
+ """
4021
+ Zero-based index for the corresponding capacity bucket.
4022
+ """
4023
+ return pulumi.get(self, "capacity_index")
4024
+
4025
+ @property
4026
+ @pulumi.getter(name="remainingMemoryInGbs")
4027
+ def remaining_memory_in_gbs(self) -> Optional[builtins.float]:
4028
+ """
4029
+ The current available memory of the dedicated VM host, in GBs.
4030
+ """
4031
+ return pulumi.get(self, "remaining_memory_in_gbs")
4032
+
4033
+ @property
4034
+ @pulumi.getter(name="remainingOcpus")
4035
+ def remaining_ocpus(self) -> Optional[builtins.float]:
4036
+ """
4037
+ The current available OCPUs of the dedicated VM host.
4038
+ """
4039
+ return pulumi.get(self, "remaining_ocpus")
4040
+
4041
+ @property
4042
+ @pulumi.getter(name="supportedShapes")
4043
+ def supported_shapes(self) -> Optional[Sequence[builtins.str]]:
4044
+ """
4045
+ List of VMI shapes supported on each capacity bucket.
4046
+ """
4047
+ return pulumi.get(self, "supported_shapes")
4048
+
4049
+ @property
4050
+ @pulumi.getter(name="totalMemoryInGbs")
4051
+ def total_memory_in_gbs(self) -> Optional[builtins.float]:
4052
+ """
4053
+ The current total memory of the dedicated VM host, in GBs.
4054
+ """
4055
+ return pulumi.get(self, "total_memory_in_gbs")
4056
+
4057
+ @property
4058
+ @pulumi.getter(name="totalOcpus")
4059
+ def total_ocpus(self) -> Optional[builtins.float]:
4060
+ """
4061
+ The current total OCPUs of the dedicated VM host.
4062
+ """
4063
+ return pulumi.get(self, "total_ocpus")
4064
+
4065
+
3695
4066
  @pulumi.output_type
3696
4067
  class DedicatedVmHostPlacementConstraintDetails(dict):
3697
4068
  @staticmethod
@@ -23773,36 +24144,397 @@ class GetComputeGpuMemoryFabricsFilterResult(dict):
23773
24144
 
23774
24145
 
23775
24146
  @pulumi.output_type
23776
- class GetComputeHostsComputeHostCollectionResult(dict):
24147
+ class GetComputeHostConfigurationDataResult(dict):
23777
24148
  def __init__(__self__, *,
23778
- items: Sequence['outputs.GetComputeHostsComputeHostCollectionItemResult']):
24149
+ check_details: Sequence['outputs.GetComputeHostConfigurationDataCheckDetailResult'],
24150
+ time_last_apply: builtins.str):
24151
+ """
24152
+ :param Sequence['GetComputeHostConfigurationDataCheckDetailArgs'] check_details: Compute Host Group Configuration Details Check
24153
+ :param builtins.str time_last_apply: The time that was last applied.
24154
+ """
24155
+ pulumi.set(__self__, "check_details", check_details)
24156
+ pulumi.set(__self__, "time_last_apply", time_last_apply)
24157
+
24158
+ @property
24159
+ @pulumi.getter(name="checkDetails")
24160
+ def check_details(self) -> Sequence['outputs.GetComputeHostConfigurationDataCheckDetailResult']:
24161
+ """
24162
+ Compute Host Group Configuration Details Check
24163
+ """
24164
+ return pulumi.get(self, "check_details")
24165
+
24166
+ @property
24167
+ @pulumi.getter(name="timeLastApply")
24168
+ def time_last_apply(self) -> builtins.str:
24169
+ """
24170
+ The time that was last applied.
24171
+ """
24172
+ return pulumi.get(self, "time_last_apply")
24173
+
24174
+
24175
+ @pulumi.output_type
24176
+ class GetComputeHostConfigurationDataCheckDetailResult(dict):
24177
+ def __init__(__self__, *,
24178
+ configuration_state: builtins.str,
24179
+ firmware_bundle_id: builtins.str,
24180
+ recycle_level: builtins.str,
24181
+ type: builtins.str):
24182
+ """
24183
+ :param builtins.str configuration_state: Configuration state of the Compute Bare Metal Host.
24184
+ :param builtins.str firmware_bundle_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique firmware bundle associated with the Host Configuration.
24185
+ :param builtins.str recycle_level: Preferred recycle level for hosts associated with the reservation config.
24186
+ * `SKIP_RECYCLE` - Skips host wipe.
24187
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
24188
+ :param builtins.str type: The type of configuration
24189
+ """
24190
+ pulumi.set(__self__, "configuration_state", configuration_state)
24191
+ pulumi.set(__self__, "firmware_bundle_id", firmware_bundle_id)
24192
+ pulumi.set(__self__, "recycle_level", recycle_level)
24193
+ pulumi.set(__self__, "type", type)
24194
+
24195
+ @property
24196
+ @pulumi.getter(name="configurationState")
24197
+ def configuration_state(self) -> builtins.str:
24198
+ """
24199
+ Configuration state of the Compute Bare Metal Host.
24200
+ """
24201
+ return pulumi.get(self, "configuration_state")
24202
+
24203
+ @property
24204
+ @pulumi.getter(name="firmwareBundleId")
24205
+ def firmware_bundle_id(self) -> builtins.str:
24206
+ """
24207
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique firmware bundle associated with the Host Configuration.
24208
+ """
24209
+ return pulumi.get(self, "firmware_bundle_id")
24210
+
24211
+ @property
24212
+ @pulumi.getter(name="recycleLevel")
24213
+ def recycle_level(self) -> builtins.str:
24214
+ """
24215
+ Preferred recycle level for hosts associated with the reservation config.
24216
+ * `SKIP_RECYCLE` - Skips host wipe.
24217
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
24218
+ """
24219
+ return pulumi.get(self, "recycle_level")
24220
+
24221
+ @property
24222
+ @pulumi.getter
24223
+ def type(self) -> builtins.str:
24224
+ """
24225
+ The type of configuration
24226
+ """
24227
+ return pulumi.get(self, "type")
24228
+
24229
+
24230
+ @pulumi.output_type
24231
+ class GetComputeHostGroupConfigurationResult(dict):
24232
+ def __init__(__self__, *,
24233
+ firmware_bundle_id: builtins.str,
24234
+ recycle_level: builtins.str,
24235
+ target: builtins.str):
24236
+ """
24237
+ :param builtins.str firmware_bundle_id: The OCID for firmware bundle
24238
+ :param builtins.str recycle_level: Preferred recycle level for hosts associated with the reservation config.
24239
+ * `SKIP_RECYCLE` - Skips host wipe.
24240
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
24241
+ :param builtins.str target: Either the platform name or compute shape that the configuration is targeting
24242
+ """
24243
+ pulumi.set(__self__, "firmware_bundle_id", firmware_bundle_id)
24244
+ pulumi.set(__self__, "recycle_level", recycle_level)
24245
+ pulumi.set(__self__, "target", target)
24246
+
24247
+ @property
24248
+ @pulumi.getter(name="firmwareBundleId")
24249
+ def firmware_bundle_id(self) -> builtins.str:
24250
+ """
24251
+ The OCID for firmware bundle
24252
+ """
24253
+ return pulumi.get(self, "firmware_bundle_id")
24254
+
24255
+ @property
24256
+ @pulumi.getter(name="recycleLevel")
24257
+ def recycle_level(self) -> builtins.str:
24258
+ """
24259
+ Preferred recycle level for hosts associated with the reservation config.
24260
+ * `SKIP_RECYCLE` - Skips host wipe.
24261
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
24262
+ """
24263
+ return pulumi.get(self, "recycle_level")
24264
+
24265
+ @property
24266
+ @pulumi.getter
24267
+ def target(self) -> builtins.str:
24268
+ """
24269
+ Either the platform name or compute shape that the configuration is targeting
24270
+ """
24271
+ return pulumi.get(self, "target")
24272
+
24273
+
24274
+ @pulumi.output_type
24275
+ class GetComputeHostGroupsComputeHostGroupCollectionResult(dict):
24276
+ def __init__(__self__, *,
24277
+ items: Sequence['outputs.GetComputeHostGroupsComputeHostGroupCollectionItemResult']):
23779
24278
  pulumi.set(__self__, "items", items)
23780
24279
 
23781
24280
  @property
23782
24281
  @pulumi.getter
23783
- def items(self) -> Sequence['outputs.GetComputeHostsComputeHostCollectionItemResult']:
24282
+ def items(self) -> Sequence['outputs.GetComputeHostGroupsComputeHostGroupCollectionItemResult']:
23784
24283
  return pulumi.get(self, "items")
23785
24284
 
23786
24285
 
23787
24286
  @pulumi.output_type
23788
- class GetComputeHostsComputeHostCollectionItemResult(dict):
24287
+ class GetComputeHostGroupsComputeHostGroupCollectionItemResult(dict):
23789
24288
  def __init__(__self__, *,
23790
24289
  availability_domain: builtins.str,
23791
- capacity_reservation_id: builtins.str,
23792
24290
  compartment_id: builtins.str,
24291
+ configurations: Sequence['outputs.GetComputeHostGroupsComputeHostGroupCollectionItemConfigurationResult'],
23793
24292
  defined_tags: Mapping[str, builtins.str],
23794
24293
  display_name: builtins.str,
23795
- fault_domain: builtins.str,
23796
24294
  freeform_tags: Mapping[str, builtins.str],
23797
- gpu_memory_fabric_id: builtins.str,
23798
- has_impacted_components: builtins.bool,
23799
- health: builtins.str,
23800
- hpc_island_id: builtins.str,
23801
24295
  id: builtins.str,
23802
- instance_id: builtins.str,
23803
- lifecycle_details: Mapping[str, builtins.str],
23804
- local_block_id: builtins.str,
23805
- network_block_id: builtins.str,
24296
+ is_targeted_placement_required: builtins.bool,
24297
+ state: builtins.str,
24298
+ system_tags: Mapping[str, builtins.str],
24299
+ time_created: builtins.str,
24300
+ time_updated: builtins.str):
24301
+ """
24302
+ :param builtins.str availability_domain: The availability domain of a host group. Example: `Uocm:PHX-AD-1`
24303
+ :param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
24304
+ :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
24305
+ :param builtins.str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
24306
+ :param Mapping[str, builtins.str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
24307
+ :param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique host group
24308
+ :param builtins.bool is_targeted_placement_required: A flag that allows customers to restrict placement for hosts attached to the group. If true, the only way to place on hosts is to target the specific host group.
24309
+ :param builtins.str state: The lifecycle state of the host group
24310
+ :param Mapping[str, builtins.str] system_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
24311
+ :param builtins.str time_created: The date and time the host group was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
24312
+ :param builtins.str time_updated: The date and time the host group was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
24313
+ """
24314
+ pulumi.set(__self__, "availability_domain", availability_domain)
24315
+ pulumi.set(__self__, "compartment_id", compartment_id)
24316
+ pulumi.set(__self__, "configurations", configurations)
24317
+ pulumi.set(__self__, "defined_tags", defined_tags)
24318
+ pulumi.set(__self__, "display_name", display_name)
24319
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
24320
+ pulumi.set(__self__, "id", id)
24321
+ pulumi.set(__self__, "is_targeted_placement_required", is_targeted_placement_required)
24322
+ pulumi.set(__self__, "state", state)
24323
+ pulumi.set(__self__, "system_tags", system_tags)
24324
+ pulumi.set(__self__, "time_created", time_created)
24325
+ pulumi.set(__self__, "time_updated", time_updated)
24326
+
24327
+ @property
24328
+ @pulumi.getter(name="availabilityDomain")
24329
+ def availability_domain(self) -> builtins.str:
24330
+ """
24331
+ The availability domain of a host group. Example: `Uocm:PHX-AD-1`
24332
+ """
24333
+ return pulumi.get(self, "availability_domain")
24334
+
24335
+ @property
24336
+ @pulumi.getter(name="compartmentId")
24337
+ def compartment_id(self) -> builtins.str:
24338
+ """
24339
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
24340
+ """
24341
+ return pulumi.get(self, "compartment_id")
24342
+
24343
+ @property
24344
+ @pulumi.getter
24345
+ def configurations(self) -> Sequence['outputs.GetComputeHostGroupsComputeHostGroupCollectionItemConfigurationResult']:
24346
+ return pulumi.get(self, "configurations")
24347
+
24348
+ @property
24349
+ @pulumi.getter(name="definedTags")
24350
+ def defined_tags(self) -> Mapping[str, builtins.str]:
24351
+ """
24352
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
24353
+ """
24354
+ return pulumi.get(self, "defined_tags")
24355
+
24356
+ @property
24357
+ @pulumi.getter(name="displayName")
24358
+ def display_name(self) -> builtins.str:
24359
+ """
24360
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
24361
+ """
24362
+ return pulumi.get(self, "display_name")
24363
+
24364
+ @property
24365
+ @pulumi.getter(name="freeformTags")
24366
+ def freeform_tags(self) -> Mapping[str, builtins.str]:
24367
+ """
24368
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
24369
+ """
24370
+ return pulumi.get(self, "freeform_tags")
24371
+
24372
+ @property
24373
+ @pulumi.getter
24374
+ def id(self) -> builtins.str:
24375
+ """
24376
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique host group
24377
+ """
24378
+ return pulumi.get(self, "id")
24379
+
24380
+ @property
24381
+ @pulumi.getter(name="isTargetedPlacementRequired")
24382
+ def is_targeted_placement_required(self) -> builtins.bool:
24383
+ """
24384
+ A flag that allows customers to restrict placement for hosts attached to the group. If true, the only way to place on hosts is to target the specific host group.
24385
+ """
24386
+ return pulumi.get(self, "is_targeted_placement_required")
24387
+
24388
+ @property
24389
+ @pulumi.getter
24390
+ def state(self) -> builtins.str:
24391
+ """
24392
+ The lifecycle state of the host group
24393
+ """
24394
+ return pulumi.get(self, "state")
24395
+
24396
+ @property
24397
+ @pulumi.getter(name="systemTags")
24398
+ def system_tags(self) -> Mapping[str, builtins.str]:
24399
+ """
24400
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
24401
+ """
24402
+ return pulumi.get(self, "system_tags")
24403
+
24404
+ @property
24405
+ @pulumi.getter(name="timeCreated")
24406
+ def time_created(self) -> builtins.str:
24407
+ """
24408
+ The date and time the host group was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
24409
+ """
24410
+ return pulumi.get(self, "time_created")
24411
+
24412
+ @property
24413
+ @pulumi.getter(name="timeUpdated")
24414
+ def time_updated(self) -> builtins.str:
24415
+ """
24416
+ The date and time the host group was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
24417
+ """
24418
+ return pulumi.get(self, "time_updated")
24419
+
24420
+
24421
+ @pulumi.output_type
24422
+ class GetComputeHostGroupsComputeHostGroupCollectionItemConfigurationResult(dict):
24423
+ def __init__(__self__, *,
24424
+ firmware_bundle_id: builtins.str,
24425
+ recycle_level: builtins.str,
24426
+ target: builtins.str):
24427
+ pulumi.set(__self__, "firmware_bundle_id", firmware_bundle_id)
24428
+ pulumi.set(__self__, "recycle_level", recycle_level)
24429
+ pulumi.set(__self__, "target", target)
24430
+
24431
+ @property
24432
+ @pulumi.getter(name="firmwareBundleId")
24433
+ def firmware_bundle_id(self) -> builtins.str:
24434
+ return pulumi.get(self, "firmware_bundle_id")
24435
+
24436
+ @property
24437
+ @pulumi.getter(name="recycleLevel")
24438
+ def recycle_level(self) -> builtins.str:
24439
+ return pulumi.get(self, "recycle_level")
24440
+
24441
+ @property
24442
+ @pulumi.getter
24443
+ def target(self) -> builtins.str:
24444
+ return pulumi.get(self, "target")
24445
+
24446
+
24447
+ @pulumi.output_type
24448
+ class GetComputeHostGroupsFilterResult(dict):
24449
+ def __init__(__self__, *,
24450
+ name: builtins.str,
24451
+ values: Sequence[builtins.str],
24452
+ regex: Optional[builtins.bool] = None):
24453
+ pulumi.set(__self__, "name", name)
24454
+ pulumi.set(__self__, "values", values)
24455
+ if regex is not None:
24456
+ pulumi.set(__self__, "regex", regex)
24457
+
24458
+ @property
24459
+ @pulumi.getter
24460
+ def name(self) -> builtins.str:
24461
+ return pulumi.get(self, "name")
24462
+
24463
+ @property
24464
+ @pulumi.getter
24465
+ def values(self) -> Sequence[builtins.str]:
24466
+ return pulumi.get(self, "values")
24467
+
24468
+ @property
24469
+ @pulumi.getter
24470
+ def regex(self) -> Optional[builtins.bool]:
24471
+ return pulumi.get(self, "regex")
24472
+
24473
+
24474
+ @pulumi.output_type
24475
+ class GetComputeHostRecycleDetailResult(dict):
24476
+ def __init__(__self__, *,
24477
+ compute_host_group_id: builtins.str,
24478
+ recycle_level: builtins.str):
24479
+ """
24480
+ :param builtins.str compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
24481
+ :param builtins.str recycle_level: Preferred recycle level for hosts associated with the reservation config.
24482
+ * `SKIP_RECYCLE` - Skips host wipe.
24483
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
24484
+ """
24485
+ pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
24486
+ pulumi.set(__self__, "recycle_level", recycle_level)
24487
+
24488
+ @property
24489
+ @pulumi.getter(name="computeHostGroupId")
24490
+ def compute_host_group_id(self) -> builtins.str:
24491
+ """
24492
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
24493
+ """
24494
+ return pulumi.get(self, "compute_host_group_id")
24495
+
24496
+ @property
24497
+ @pulumi.getter(name="recycleLevel")
24498
+ def recycle_level(self) -> builtins.str:
24499
+ """
24500
+ Preferred recycle level for hosts associated with the reservation config.
24501
+ * `SKIP_RECYCLE` - Skips host wipe.
24502
+ * `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
24503
+ """
24504
+ return pulumi.get(self, "recycle_level")
24505
+
24506
+
24507
+ @pulumi.output_type
24508
+ class GetComputeHostsComputeHostCollectionResult(dict):
24509
+ def __init__(__self__, *,
24510
+ items: Sequence['outputs.GetComputeHostsComputeHostCollectionItemResult']):
24511
+ pulumi.set(__self__, "items", items)
24512
+
24513
+ @property
24514
+ @pulumi.getter
24515
+ def items(self) -> Sequence['outputs.GetComputeHostsComputeHostCollectionItemResult']:
24516
+ return pulumi.get(self, "items")
24517
+
24518
+
24519
+ @pulumi.output_type
24520
+ class GetComputeHostsComputeHostCollectionItemResult(dict):
24521
+ def __init__(__self__, *,
24522
+ availability_domain: builtins.str,
24523
+ capacity_reservation_id: builtins.str,
24524
+ compartment_id: builtins.str,
24525
+ compute_host_group_id: builtins.str,
24526
+ defined_tags: Mapping[str, builtins.str],
24527
+ display_name: builtins.str,
24528
+ fault_domain: builtins.str,
24529
+ freeform_tags: Mapping[str, builtins.str],
24530
+ gpu_memory_fabric_id: builtins.str,
24531
+ has_impacted_components: builtins.bool,
24532
+ health: builtins.str,
24533
+ hpc_island_id: builtins.str,
24534
+ id: builtins.str,
24535
+ instance_id: builtins.str,
24536
+ local_block_id: builtins.str,
24537
+ network_block_id: builtins.str,
23806
24538
  shape: builtins.str,
23807
24539
  state: builtins.str,
23808
24540
  time_created: builtins.str,
@@ -23811,6 +24543,7 @@ class GetComputeHostsComputeHostCollectionItemResult(dict):
23811
24543
  :param builtins.str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
23812
24544
  :param builtins.str capacity_reservation_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Capacity Reserver that is currently on host
23813
24545
  :param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
24546
+ :param builtins.str compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group.
23814
24547
  :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
23815
24548
  :param builtins.str display_name: A filter to return only resources that match the given display name exactly.
23816
24549
  :param builtins.str fault_domain: A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
@@ -23820,7 +24553,6 @@ class GetComputeHostsComputeHostCollectionItemResult(dict):
23820
24553
  :param builtins.str hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
23821
24554
  :param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique host
23822
24555
  :param builtins.str instance_id: The public [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Virtual Machine or Bare Metal instance
23823
- :param Mapping[str, builtins.str] lifecycle_details: A free-form description detailing why the host is in its current state.
23824
24556
  :param builtins.str local_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
23825
24557
  :param builtins.str network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
23826
24558
  :param builtins.str shape: The shape of host
@@ -23831,6 +24563,7 @@ class GetComputeHostsComputeHostCollectionItemResult(dict):
23831
24563
  pulumi.set(__self__, "availability_domain", availability_domain)
23832
24564
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
23833
24565
  pulumi.set(__self__, "compartment_id", compartment_id)
24566
+ pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
23834
24567
  pulumi.set(__self__, "defined_tags", defined_tags)
23835
24568
  pulumi.set(__self__, "display_name", display_name)
23836
24569
  pulumi.set(__self__, "fault_domain", fault_domain)
@@ -23841,7 +24574,6 @@ class GetComputeHostsComputeHostCollectionItemResult(dict):
23841
24574
  pulumi.set(__self__, "hpc_island_id", hpc_island_id)
23842
24575
  pulumi.set(__self__, "id", id)
23843
24576
  pulumi.set(__self__, "instance_id", instance_id)
23844
- pulumi.set(__self__, "lifecycle_details", lifecycle_details)
23845
24577
  pulumi.set(__self__, "local_block_id", local_block_id)
23846
24578
  pulumi.set(__self__, "network_block_id", network_block_id)
23847
24579
  pulumi.set(__self__, "shape", shape)
@@ -23873,6 +24605,14 @@ class GetComputeHostsComputeHostCollectionItemResult(dict):
23873
24605
  """
23874
24606
  return pulumi.get(self, "compartment_id")
23875
24607
 
24608
+ @property
24609
+ @pulumi.getter(name="computeHostGroupId")
24610
+ def compute_host_group_id(self) -> builtins.str:
24611
+ """
24612
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group.
24613
+ """
24614
+ return pulumi.get(self, "compute_host_group_id")
24615
+
23876
24616
  @property
23877
24617
  @pulumi.getter(name="definedTags")
23878
24618
  def defined_tags(self) -> Mapping[str, builtins.str]:
@@ -23950,14 +24690,6 @@ class GetComputeHostsComputeHostCollectionItemResult(dict):
23950
24690
  """
23951
24691
  return pulumi.get(self, "instance_id")
23952
24692
 
23953
- @property
23954
- @pulumi.getter(name="lifecycleDetails")
23955
- def lifecycle_details(self) -> Mapping[str, builtins.str]:
23956
- """
23957
- A free-form description detailing why the host is in its current state.
23958
- """
23959
- return pulumi.get(self, "lifecycle_details")
23960
-
23961
24693
  @property
23962
24694
  @pulumi.getter(name="localBlockId")
23963
24695
  def local_block_id(self) -> builtins.str:
@@ -25528,6 +26260,79 @@ class GetCrossConnectsFilterResult(dict):
25528
26260
  return pulumi.get(self, "regex")
25529
26261
 
25530
26262
 
26263
+ @pulumi.output_type
26264
+ class GetDedicatedVmHostCapacityBinResult(dict):
26265
+ def __init__(__self__, *,
26266
+ capacity_index: builtins.int,
26267
+ remaining_memory_in_gbs: builtins.float,
26268
+ remaining_ocpus: builtins.float,
26269
+ supported_shapes: Sequence[builtins.str],
26270
+ total_memory_in_gbs: builtins.float,
26271
+ total_ocpus: builtins.float):
26272
+ """
26273
+ :param builtins.int capacity_index: Zero-based index for the corresponding capacity bucket.
26274
+ :param builtins.float remaining_memory_in_gbs: The current available memory of the dedicated VM host, in GBs.
26275
+ :param builtins.float remaining_ocpus: The current available OCPUs of the dedicated VM host.
26276
+ :param Sequence[builtins.str] supported_shapes: List of VMI shapes supported on each capacity bucket.
26277
+ :param builtins.float total_memory_in_gbs: The current total memory of the dedicated VM host, in GBs.
26278
+ :param builtins.float total_ocpus: The current total OCPUs of the dedicated VM host.
26279
+ """
26280
+ pulumi.set(__self__, "capacity_index", capacity_index)
26281
+ pulumi.set(__self__, "remaining_memory_in_gbs", remaining_memory_in_gbs)
26282
+ pulumi.set(__self__, "remaining_ocpus", remaining_ocpus)
26283
+ pulumi.set(__self__, "supported_shapes", supported_shapes)
26284
+ pulumi.set(__self__, "total_memory_in_gbs", total_memory_in_gbs)
26285
+ pulumi.set(__self__, "total_ocpus", total_ocpus)
26286
+
26287
+ @property
26288
+ @pulumi.getter(name="capacityIndex")
26289
+ def capacity_index(self) -> builtins.int:
26290
+ """
26291
+ Zero-based index for the corresponding capacity bucket.
26292
+ """
26293
+ return pulumi.get(self, "capacity_index")
26294
+
26295
+ @property
26296
+ @pulumi.getter(name="remainingMemoryInGbs")
26297
+ def remaining_memory_in_gbs(self) -> builtins.float:
26298
+ """
26299
+ The current available memory of the dedicated VM host, in GBs.
26300
+ """
26301
+ return pulumi.get(self, "remaining_memory_in_gbs")
26302
+
26303
+ @property
26304
+ @pulumi.getter(name="remainingOcpus")
26305
+ def remaining_ocpus(self) -> builtins.float:
26306
+ """
26307
+ The current available OCPUs of the dedicated VM host.
26308
+ """
26309
+ return pulumi.get(self, "remaining_ocpus")
26310
+
26311
+ @property
26312
+ @pulumi.getter(name="supportedShapes")
26313
+ def supported_shapes(self) -> Sequence[builtins.str]:
26314
+ """
26315
+ List of VMI shapes supported on each capacity bucket.
26316
+ """
26317
+ return pulumi.get(self, "supported_shapes")
26318
+
26319
+ @property
26320
+ @pulumi.getter(name="totalMemoryInGbs")
26321
+ def total_memory_in_gbs(self) -> builtins.float:
26322
+ """
26323
+ The current total memory of the dedicated VM host, in GBs.
26324
+ """
26325
+ return pulumi.get(self, "total_memory_in_gbs")
26326
+
26327
+ @property
26328
+ @pulumi.getter(name="totalOcpus")
26329
+ def total_ocpus(self) -> builtins.float:
26330
+ """
26331
+ The current total OCPUs of the dedicated VM host.
26332
+ """
26333
+ return pulumi.get(self, "total_ocpus")
26334
+
26335
+
25531
26336
  @pulumi.output_type
25532
26337
  class GetDedicatedVmHostInstanceShapesDedicatedVmHostInstanceShapeResult(dict):
25533
26338
  def __init__(__self__, *,
@@ -25762,7 +26567,9 @@ class GetDedicatedVmHostShapesFilterResult(dict):
25762
26567
  class GetDedicatedVmHostsDedicatedVmHostResult(dict):
25763
26568
  def __init__(__self__, *,
25764
26569
  availability_domain: builtins.str,
26570
+ capacity_bins: Sequence['outputs.GetDedicatedVmHostsDedicatedVmHostCapacityBinResult'],
25765
26571
  compartment_id: builtins.str,
26572
+ compute_bare_metal_host_id: builtins.str,
25766
26573
  dedicated_vm_host_shape: builtins.str,
25767
26574
  defined_tags: Mapping[str, builtins.str],
25768
26575
  display_name: builtins.str,
@@ -25779,6 +26586,7 @@ class GetDedicatedVmHostsDedicatedVmHostResult(dict):
25779
26586
  """
25780
26587
  :param builtins.str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
25781
26588
  :param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
26589
+ :param builtins.str compute_bare_metal_host_id: The OCID of the compute bare metal host.
25782
26590
  :param builtins.str dedicated_vm_host_shape: The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VMs.
25783
26591
  :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
25784
26592
  :param builtins.str display_name: A filter to return only resources that match the given display name exactly.
@@ -25794,7 +26602,9 @@ class GetDedicatedVmHostsDedicatedVmHostResult(dict):
25794
26602
  :param builtins.float total_ocpus: The current total OCPUs of the dedicated VM host.
25795
26603
  """
25796
26604
  pulumi.set(__self__, "availability_domain", availability_domain)
26605
+ pulumi.set(__self__, "capacity_bins", capacity_bins)
25797
26606
  pulumi.set(__self__, "compartment_id", compartment_id)
26607
+ pulumi.set(__self__, "compute_bare_metal_host_id", compute_bare_metal_host_id)
25798
26608
  pulumi.set(__self__, "dedicated_vm_host_shape", dedicated_vm_host_shape)
25799
26609
  pulumi.set(__self__, "defined_tags", defined_tags)
25800
26610
  pulumi.set(__self__, "display_name", display_name)
@@ -25817,6 +26627,11 @@ class GetDedicatedVmHostsDedicatedVmHostResult(dict):
25817
26627
  """
25818
26628
  return pulumi.get(self, "availability_domain")
25819
26629
 
26630
+ @property
26631
+ @pulumi.getter(name="capacityBins")
26632
+ def capacity_bins(self) -> Sequence['outputs.GetDedicatedVmHostsDedicatedVmHostCapacityBinResult']:
26633
+ return pulumi.get(self, "capacity_bins")
26634
+
25820
26635
  @property
25821
26636
  @pulumi.getter(name="compartmentId")
25822
26637
  def compartment_id(self) -> builtins.str:
@@ -25825,6 +26640,14 @@ class GetDedicatedVmHostsDedicatedVmHostResult(dict):
25825
26640
  """
25826
26641
  return pulumi.get(self, "compartment_id")
25827
26642
 
26643
+ @property
26644
+ @pulumi.getter(name="computeBareMetalHostId")
26645
+ def compute_bare_metal_host_id(self) -> builtins.str:
26646
+ """
26647
+ The OCID of the compute bare metal host.
26648
+ """
26649
+ return pulumi.get(self, "compute_bare_metal_host_id")
26650
+
25828
26651
  @property
25829
26652
  @pulumi.getter(name="dedicatedVmHostShape")
25830
26653
  def dedicated_vm_host_shape(self) -> builtins.str:
@@ -25930,6 +26753,71 @@ class GetDedicatedVmHostsDedicatedVmHostResult(dict):
25930
26753
  return pulumi.get(self, "total_ocpus")
25931
26754
 
25932
26755
 
26756
+ @pulumi.output_type
26757
+ class GetDedicatedVmHostsDedicatedVmHostCapacityBinResult(dict):
26758
+ def __init__(__self__, *,
26759
+ capacity_index: builtins.int,
26760
+ remaining_memory_in_gbs: builtins.float,
26761
+ remaining_ocpus: builtins.float,
26762
+ supported_shapes: Sequence[builtins.str],
26763
+ total_memory_in_gbs: builtins.float,
26764
+ total_ocpus: builtins.float):
26765
+ """
26766
+ :param builtins.float remaining_memory_in_gbs: The current available memory of the dedicated VM host, in GBs.
26767
+ :param builtins.float remaining_ocpus: The current available OCPUs of the dedicated VM host.
26768
+ :param builtins.float total_memory_in_gbs: The current total memory of the dedicated VM host, in GBs.
26769
+ :param builtins.float total_ocpus: The current total OCPUs of the dedicated VM host.
26770
+ """
26771
+ pulumi.set(__self__, "capacity_index", capacity_index)
26772
+ pulumi.set(__self__, "remaining_memory_in_gbs", remaining_memory_in_gbs)
26773
+ pulumi.set(__self__, "remaining_ocpus", remaining_ocpus)
26774
+ pulumi.set(__self__, "supported_shapes", supported_shapes)
26775
+ pulumi.set(__self__, "total_memory_in_gbs", total_memory_in_gbs)
26776
+ pulumi.set(__self__, "total_ocpus", total_ocpus)
26777
+
26778
+ @property
26779
+ @pulumi.getter(name="capacityIndex")
26780
+ def capacity_index(self) -> builtins.int:
26781
+ return pulumi.get(self, "capacity_index")
26782
+
26783
+ @property
26784
+ @pulumi.getter(name="remainingMemoryInGbs")
26785
+ def remaining_memory_in_gbs(self) -> builtins.float:
26786
+ """
26787
+ The current available memory of the dedicated VM host, in GBs.
26788
+ """
26789
+ return pulumi.get(self, "remaining_memory_in_gbs")
26790
+
26791
+ @property
26792
+ @pulumi.getter(name="remainingOcpus")
26793
+ def remaining_ocpus(self) -> builtins.float:
26794
+ """
26795
+ The current available OCPUs of the dedicated VM host.
26796
+ """
26797
+ return pulumi.get(self, "remaining_ocpus")
26798
+
26799
+ @property
26800
+ @pulumi.getter(name="supportedShapes")
26801
+ def supported_shapes(self) -> Sequence[builtins.str]:
26802
+ return pulumi.get(self, "supported_shapes")
26803
+
26804
+ @property
26805
+ @pulumi.getter(name="totalMemoryInGbs")
26806
+ def total_memory_in_gbs(self) -> builtins.float:
26807
+ """
26808
+ The current total memory of the dedicated VM host, in GBs.
26809
+ """
26810
+ return pulumi.get(self, "total_memory_in_gbs")
26811
+
26812
+ @property
26813
+ @pulumi.getter(name="totalOcpus")
26814
+ def total_ocpus(self) -> builtins.float:
26815
+ """
26816
+ The current total OCPUs of the dedicated VM host.
26817
+ """
26818
+ return pulumi.get(self, "total_ocpus")
26819
+
26820
+
25933
26821
  @pulumi.output_type
25934
26822
  class GetDedicatedVmHostsDedicatedVmHostPlacementConstraintDetailResult(dict):
25935
26823
  def __init__(__self__, *,