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.
- pulumi_oci/__init__.py +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,148 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = [
|
21
|
+
'GetComputeHostGroupsResult',
|
22
|
+
'AwaitableGetComputeHostGroupsResult',
|
23
|
+
'get_compute_host_groups',
|
24
|
+
'get_compute_host_groups_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetComputeHostGroupsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getComputeHostGroups.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, compute_host_group_collections=None, filters=None, id=None):
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if compute_host_group_collections and not isinstance(compute_host_group_collections, list):
|
37
|
+
raise TypeError("Expected argument 'compute_host_group_collections' to be a list")
|
38
|
+
pulumi.set(__self__, "compute_host_group_collections", compute_host_group_collections)
|
39
|
+
if filters and not isinstance(filters, list):
|
40
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
41
|
+
pulumi.set(__self__, "filters", filters)
|
42
|
+
if id and not isinstance(id, str):
|
43
|
+
raise TypeError("Expected argument 'id' to be a str")
|
44
|
+
pulumi.set(__self__, "id", id)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="compartmentId")
|
48
|
+
def compartment_id(self) -> builtins.str:
|
49
|
+
"""
|
50
|
+
The OCID of the compartment that contains host group.
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "compartment_id")
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter(name="computeHostGroupCollections")
|
56
|
+
def compute_host_group_collections(self) -> Sequence['outputs.GetComputeHostGroupsComputeHostGroupCollectionResult']:
|
57
|
+
"""
|
58
|
+
The list of compute_host_group_collection.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "compute_host_group_collections")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def filters(self) -> Optional[Sequence['outputs.GetComputeHostGroupsFilterResult']]:
|
65
|
+
return pulumi.get(self, "filters")
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter
|
69
|
+
def id(self) -> builtins.str:
|
70
|
+
"""
|
71
|
+
The provider-assigned unique ID for this managed resource.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "id")
|
74
|
+
|
75
|
+
|
76
|
+
class AwaitableGetComputeHostGroupsResult(GetComputeHostGroupsResult):
|
77
|
+
# pylint: disable=using-constant-test
|
78
|
+
def __await__(self):
|
79
|
+
if False:
|
80
|
+
yield self
|
81
|
+
return GetComputeHostGroupsResult(
|
82
|
+
compartment_id=self.compartment_id,
|
83
|
+
compute_host_group_collections=self.compute_host_group_collections,
|
84
|
+
filters=self.filters,
|
85
|
+
id=self.id)
|
86
|
+
|
87
|
+
|
88
|
+
def get_compute_host_groups(compartment_id: Optional[builtins.str] = None,
|
89
|
+
filters: Optional[Sequence[Union['GetComputeHostGroupsFilterArgs', 'GetComputeHostGroupsFilterArgsDict']]] = None,
|
90
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetComputeHostGroupsResult:
|
91
|
+
"""
|
92
|
+
This data source provides the list of Compute Host Groups in Oracle Cloud Infrastructure Core service.
|
93
|
+
|
94
|
+
Lists the compute host groups that match the specified criteria and compartment.
|
95
|
+
|
96
|
+
## Example Usage
|
97
|
+
|
98
|
+
```python
|
99
|
+
import pulumi
|
100
|
+
import pulumi_oci as oci
|
101
|
+
|
102
|
+
test_compute_host_groups = oci.Core.get_compute_host_groups(compartment_id=compartment_id)
|
103
|
+
```
|
104
|
+
|
105
|
+
|
106
|
+
:param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
107
|
+
"""
|
108
|
+
__args__ = dict()
|
109
|
+
__args__['compartmentId'] = compartment_id
|
110
|
+
__args__['filters'] = filters
|
111
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
112
|
+
__ret__ = pulumi.runtime.invoke('oci:Core/getComputeHostGroups:getComputeHostGroups', __args__, opts=opts, typ=GetComputeHostGroupsResult).value
|
113
|
+
|
114
|
+
return AwaitableGetComputeHostGroupsResult(
|
115
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
116
|
+
compute_host_group_collections=pulumi.get(__ret__, 'compute_host_group_collections'),
|
117
|
+
filters=pulumi.get(__ret__, 'filters'),
|
118
|
+
id=pulumi.get(__ret__, 'id'))
|
119
|
+
def get_compute_host_groups_output(compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
120
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetComputeHostGroupsFilterArgs', 'GetComputeHostGroupsFilterArgsDict']]]]] = None,
|
121
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetComputeHostGroupsResult]:
|
122
|
+
"""
|
123
|
+
This data source provides the list of Compute Host Groups in Oracle Cloud Infrastructure Core service.
|
124
|
+
|
125
|
+
Lists the compute host groups that match the specified criteria and compartment.
|
126
|
+
|
127
|
+
## Example Usage
|
128
|
+
|
129
|
+
```python
|
130
|
+
import pulumi
|
131
|
+
import pulumi_oci as oci
|
132
|
+
|
133
|
+
test_compute_host_groups = oci.Core.get_compute_host_groups(compartment_id=compartment_id)
|
134
|
+
```
|
135
|
+
|
136
|
+
|
137
|
+
:param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
138
|
+
"""
|
139
|
+
__args__ = dict()
|
140
|
+
__args__['compartmentId'] = compartment_id
|
141
|
+
__args__['filters'] = filters
|
142
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
143
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Core/getComputeHostGroups:getComputeHostGroups', __args__, opts=opts, typ=GetComputeHostGroupsResult)
|
144
|
+
return __ret__.apply(lambda __response__: GetComputeHostGroupsResult(
|
145
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
146
|
+
compute_host_group_collections=pulumi.get(__response__, 'compute_host_group_collections'),
|
147
|
+
filters=pulumi.get(__response__, 'filters'),
|
148
|
+
id=pulumi.get(__response__, 'id')))
|
@@ -29,7 +29,7 @@ class GetComputeHostsResult:
|
|
29
29
|
"""
|
30
30
|
A collection of values returned by getComputeHosts.
|
31
31
|
"""
|
32
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, compute_host_collections=None, compute_host_health=None, compute_host_lifecycle_state=None, display_name=None, filters=None, id=None, network_resource_id=None):
|
32
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, compute_host_collections=None, compute_host_group_id=None, compute_host_health=None, compute_host_lifecycle_state=None, display_name=None, filters=None, id=None, lifecycle_details=None, network_resource_id=None):
|
33
33
|
if availability_domain and not isinstance(availability_domain, str):
|
34
34
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
35
35
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -39,6 +39,9 @@ class GetComputeHostsResult:
|
|
39
39
|
if compute_host_collections and not isinstance(compute_host_collections, list):
|
40
40
|
raise TypeError("Expected argument 'compute_host_collections' to be a list")
|
41
41
|
pulumi.set(__self__, "compute_host_collections", compute_host_collections)
|
42
|
+
if compute_host_group_id and not isinstance(compute_host_group_id, str):
|
43
|
+
raise TypeError("Expected argument 'compute_host_group_id' to be a str")
|
44
|
+
pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
|
42
45
|
if compute_host_health and not isinstance(compute_host_health, str):
|
43
46
|
raise TypeError("Expected argument 'compute_host_health' to be a str")
|
44
47
|
pulumi.set(__self__, "compute_host_health", compute_host_health)
|
@@ -54,6 +57,9 @@ class GetComputeHostsResult:
|
|
54
57
|
if id and not isinstance(id, str):
|
55
58
|
raise TypeError("Expected argument 'id' to be a str")
|
56
59
|
pulumi.set(__self__, "id", id)
|
60
|
+
if lifecycle_details and not isinstance(lifecycle_details, dict):
|
61
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a dict")
|
62
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
57
63
|
if network_resource_id and not isinstance(network_resource_id, str):
|
58
64
|
raise TypeError("Expected argument 'network_resource_id' to be a str")
|
59
65
|
pulumi.set(__self__, "network_resource_id", network_resource_id)
|
@@ -82,6 +88,14 @@ class GetComputeHostsResult:
|
|
82
88
|
"""
|
83
89
|
return pulumi.get(self, "compute_host_collections")
|
84
90
|
|
91
|
+
@property
|
92
|
+
@pulumi.getter(name="computeHostGroupId")
|
93
|
+
def compute_host_group_id(self) -> Optional[builtins.str]:
|
94
|
+
"""
|
95
|
+
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.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "compute_host_group_id")
|
98
|
+
|
85
99
|
@property
|
86
100
|
@pulumi.getter(name="computeHostHealth")
|
87
101
|
def compute_host_health(self) -> Optional[builtins.str]:
|
@@ -113,6 +127,14 @@ class GetComputeHostsResult:
|
|
113
127
|
"""
|
114
128
|
return pulumi.get(self, "id")
|
115
129
|
|
130
|
+
@property
|
131
|
+
@pulumi.getter(name="lifecycleDetails")
|
132
|
+
def lifecycle_details(self) -> Mapping[str, builtins.str]:
|
133
|
+
"""
|
134
|
+
A free-form description detailing why the host is in its current state.
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "lifecycle_details")
|
137
|
+
|
116
138
|
@property
|
117
139
|
@pulumi.getter(name="networkResourceId")
|
118
140
|
def network_resource_id(self) -> Optional[builtins.str]:
|
@@ -128,16 +150,19 @@ class AwaitableGetComputeHostsResult(GetComputeHostsResult):
|
|
128
150
|
availability_domain=self.availability_domain,
|
129
151
|
compartment_id=self.compartment_id,
|
130
152
|
compute_host_collections=self.compute_host_collections,
|
153
|
+
compute_host_group_id=self.compute_host_group_id,
|
131
154
|
compute_host_health=self.compute_host_health,
|
132
155
|
compute_host_lifecycle_state=self.compute_host_lifecycle_state,
|
133
156
|
display_name=self.display_name,
|
134
157
|
filters=self.filters,
|
135
158
|
id=self.id,
|
159
|
+
lifecycle_details=self.lifecycle_details,
|
136
160
|
network_resource_id=self.network_resource_id)
|
137
161
|
|
138
162
|
|
139
163
|
def get_compute_hosts(availability_domain: Optional[builtins.str] = None,
|
140
164
|
compartment_id: Optional[builtins.str] = None,
|
165
|
+
compute_host_group_id: Optional[builtins.str] = None,
|
141
166
|
compute_host_health: Optional[builtins.str] = None,
|
142
167
|
compute_host_lifecycle_state: Optional[builtins.str] = None,
|
143
168
|
display_name: Optional[builtins.str] = None,
|
@@ -157,6 +182,7 @@ def get_compute_hosts(availability_domain: Optional[builtins.str] = None,
|
|
157
182
|
|
158
183
|
test_compute_hosts = oci.Core.get_compute_hosts(compartment_id=compartment_id,
|
159
184
|
availability_domain=compute_host_availability_domain,
|
185
|
+
compute_host_group_id=test_compute_host_group["id"],
|
160
186
|
compute_host_health=compute_host_compute_host_health,
|
161
187
|
compute_host_lifecycle_state=compute_host_compute_host_lifecycle_state,
|
162
188
|
display_name=compute_host_display_name,
|
@@ -166,6 +192,7 @@ def get_compute_hosts(availability_domain: Optional[builtins.str] = None,
|
|
166
192
|
|
167
193
|
:param builtins.str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
168
194
|
:param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
195
|
+
: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.
|
169
196
|
:param builtins.str compute_host_health: A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
|
170
197
|
:param builtins.str compute_host_lifecycle_state: A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
|
171
198
|
:param builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
@@ -177,6 +204,7 @@ def get_compute_hosts(availability_domain: Optional[builtins.str] = None,
|
|
177
204
|
__args__ = dict()
|
178
205
|
__args__['availabilityDomain'] = availability_domain
|
179
206
|
__args__['compartmentId'] = compartment_id
|
207
|
+
__args__['computeHostGroupId'] = compute_host_group_id
|
180
208
|
__args__['computeHostHealth'] = compute_host_health
|
181
209
|
__args__['computeHostLifecycleState'] = compute_host_lifecycle_state
|
182
210
|
__args__['displayName'] = display_name
|
@@ -189,14 +217,17 @@ def get_compute_hosts(availability_domain: Optional[builtins.str] = None,
|
|
189
217
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
190
218
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
191
219
|
compute_host_collections=pulumi.get(__ret__, 'compute_host_collections'),
|
220
|
+
compute_host_group_id=pulumi.get(__ret__, 'compute_host_group_id'),
|
192
221
|
compute_host_health=pulumi.get(__ret__, 'compute_host_health'),
|
193
222
|
compute_host_lifecycle_state=pulumi.get(__ret__, 'compute_host_lifecycle_state'),
|
194
223
|
display_name=pulumi.get(__ret__, 'display_name'),
|
195
224
|
filters=pulumi.get(__ret__, 'filters'),
|
196
225
|
id=pulumi.get(__ret__, 'id'),
|
226
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
197
227
|
network_resource_id=pulumi.get(__ret__, 'network_resource_id'))
|
198
228
|
def get_compute_hosts_output(availability_domain: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
199
229
|
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
230
|
+
compute_host_group_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
200
231
|
compute_host_health: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
201
232
|
compute_host_lifecycle_state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
202
233
|
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
@@ -216,6 +247,7 @@ def get_compute_hosts_output(availability_domain: Optional[pulumi.Input[Optional
|
|
216
247
|
|
217
248
|
test_compute_hosts = oci.Core.get_compute_hosts(compartment_id=compartment_id,
|
218
249
|
availability_domain=compute_host_availability_domain,
|
250
|
+
compute_host_group_id=test_compute_host_group["id"],
|
219
251
|
compute_host_health=compute_host_compute_host_health,
|
220
252
|
compute_host_lifecycle_state=compute_host_compute_host_lifecycle_state,
|
221
253
|
display_name=compute_host_display_name,
|
@@ -225,6 +257,7 @@ def get_compute_hosts_output(availability_domain: Optional[pulumi.Input[Optional
|
|
225
257
|
|
226
258
|
:param builtins.str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
227
259
|
:param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
260
|
+
: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.
|
228
261
|
:param builtins.str compute_host_health: A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
|
229
262
|
:param builtins.str compute_host_lifecycle_state: A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
|
230
263
|
:param builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
@@ -236,6 +269,7 @@ def get_compute_hosts_output(availability_domain: Optional[pulumi.Input[Optional
|
|
236
269
|
__args__ = dict()
|
237
270
|
__args__['availabilityDomain'] = availability_domain
|
238
271
|
__args__['compartmentId'] = compartment_id
|
272
|
+
__args__['computeHostGroupId'] = compute_host_group_id
|
239
273
|
__args__['computeHostHealth'] = compute_host_health
|
240
274
|
__args__['computeHostLifecycleState'] = compute_host_lifecycle_state
|
241
275
|
__args__['displayName'] = display_name
|
@@ -247,9 +281,11 @@ def get_compute_hosts_output(availability_domain: Optional[pulumi.Input[Optional
|
|
247
281
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
248
282
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
249
283
|
compute_host_collections=pulumi.get(__response__, 'compute_host_collections'),
|
284
|
+
compute_host_group_id=pulumi.get(__response__, 'compute_host_group_id'),
|
250
285
|
compute_host_health=pulumi.get(__response__, 'compute_host_health'),
|
251
286
|
compute_host_lifecycle_state=pulumi.get(__response__, 'compute_host_lifecycle_state'),
|
252
287
|
display_name=pulumi.get(__response__, 'display_name'),
|
253
288
|
filters=pulumi.get(__response__, 'filters'),
|
254
289
|
id=pulumi.get(__response__, 'id'),
|
290
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
255
291
|
network_resource_id=pulumi.get(__response__, 'network_resource_id')))
|
@@ -28,13 +28,19 @@ class GetDedicatedVmHostResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDedicatedVmHost.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, dedicated_vm_host_id=None, dedicated_vm_host_shape=None, defined_tags=None, display_name=None, fault_domain=None, freeform_tags=None, id=None, placement_constraint_details=None, remaining_memory_in_gbs=None, remaining_ocpus=None, state=None, time_created=None, total_memory_in_gbs=None, total_ocpus=None):
|
31
|
+
def __init__(__self__, availability_domain=None, capacity_bins=None, compartment_id=None, compute_bare_metal_host_id=None, dedicated_vm_host_id=None, dedicated_vm_host_shape=None, defined_tags=None, display_name=None, fault_domain=None, freeform_tags=None, id=None, placement_constraint_details=None, remaining_memory_in_gbs=None, remaining_ocpus=None, state=None, time_created=None, total_memory_in_gbs=None, total_ocpus=None):
|
32
32
|
if availability_domain and not isinstance(availability_domain, str):
|
33
33
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
34
34
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
35
|
+
if capacity_bins and not isinstance(capacity_bins, list):
|
36
|
+
raise TypeError("Expected argument 'capacity_bins' to be a list")
|
37
|
+
pulumi.set(__self__, "capacity_bins", capacity_bins)
|
35
38
|
if compartment_id and not isinstance(compartment_id, str):
|
36
39
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
37
40
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
41
|
+
if compute_bare_metal_host_id and not isinstance(compute_bare_metal_host_id, str):
|
42
|
+
raise TypeError("Expected argument 'compute_bare_metal_host_id' to be a str")
|
43
|
+
pulumi.set(__self__, "compute_bare_metal_host_id", compute_bare_metal_host_id)
|
38
44
|
if dedicated_vm_host_id and not isinstance(dedicated_vm_host_id, str):
|
39
45
|
raise TypeError("Expected argument 'dedicated_vm_host_id' to be a str")
|
40
46
|
pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
|
@@ -86,6 +92,14 @@ class GetDedicatedVmHostResult:
|
|
86
92
|
"""
|
87
93
|
return pulumi.get(self, "availability_domain")
|
88
94
|
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="capacityBins")
|
97
|
+
def capacity_bins(self) -> Sequence['outputs.GetDedicatedVmHostCapacityBinResult']:
|
98
|
+
"""
|
99
|
+
A list of total and remaining CPU & memory per capacity bucket.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "capacity_bins")
|
102
|
+
|
89
103
|
@property
|
90
104
|
@pulumi.getter(name="compartmentId")
|
91
105
|
def compartment_id(self) -> builtins.str:
|
@@ -94,6 +108,14 @@ class GetDedicatedVmHostResult:
|
|
94
108
|
"""
|
95
109
|
return pulumi.get(self, "compartment_id")
|
96
110
|
|
111
|
+
@property
|
112
|
+
@pulumi.getter(name="computeBareMetalHostId")
|
113
|
+
def compute_bare_metal_host_id(self) -> builtins.str:
|
114
|
+
"""
|
115
|
+
The OCID of the compute bare metal host.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "compute_bare_metal_host_id")
|
118
|
+
|
97
119
|
@property
|
98
120
|
@pulumi.getter(name="dedicatedVmHostId")
|
99
121
|
def dedicated_vm_host_id(self) -> builtins.str:
|
@@ -211,7 +233,9 @@ class AwaitableGetDedicatedVmHostResult(GetDedicatedVmHostResult):
|
|
211
233
|
yield self
|
212
234
|
return GetDedicatedVmHostResult(
|
213
235
|
availability_domain=self.availability_domain,
|
236
|
+
capacity_bins=self.capacity_bins,
|
214
237
|
compartment_id=self.compartment_id,
|
238
|
+
compute_bare_metal_host_id=self.compute_bare_metal_host_id,
|
215
239
|
dedicated_vm_host_id=self.dedicated_vm_host_id,
|
216
240
|
dedicated_vm_host_shape=self.dedicated_vm_host_shape,
|
217
241
|
defined_tags=self.defined_tags,
|
@@ -254,7 +278,9 @@ def get_dedicated_vm_host(dedicated_vm_host_id: Optional[builtins.str] = None,
|
|
254
278
|
|
255
279
|
return AwaitableGetDedicatedVmHostResult(
|
256
280
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
281
|
+
capacity_bins=pulumi.get(__ret__, 'capacity_bins'),
|
257
282
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
283
|
+
compute_bare_metal_host_id=pulumi.get(__ret__, 'compute_bare_metal_host_id'),
|
258
284
|
dedicated_vm_host_id=pulumi.get(__ret__, 'dedicated_vm_host_id'),
|
259
285
|
dedicated_vm_host_shape=pulumi.get(__ret__, 'dedicated_vm_host_shape'),
|
260
286
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
@@ -294,7 +320,9 @@ def get_dedicated_vm_host_output(dedicated_vm_host_id: Optional[pulumi.Input[bui
|
|
294
320
|
__ret__ = pulumi.runtime.invoke_output('oci:Core/getDedicatedVmHost:getDedicatedVmHost', __args__, opts=opts, typ=GetDedicatedVmHostResult)
|
295
321
|
return __ret__.apply(lambda __response__: GetDedicatedVmHostResult(
|
296
322
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
323
|
+
capacity_bins=pulumi.get(__response__, 'capacity_bins'),
|
297
324
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
325
|
+
compute_bare_metal_host_id=pulumi.get(__response__, 'compute_bare_metal_host_id'),
|
298
326
|
dedicated_vm_host_id=pulumi.get(__response__, 'dedicated_vm_host_id'),
|
299
327
|
dedicated_vm_host_shape=pulumi.get(__response__, 'dedicated_vm_host_shape'),
|
300
328
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|