1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getComputeHosts
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Core.getComputeHosts

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This data source provides the list of Compute Hosts in Oracle Cloud Infrastructure Core service.

    Generates a list of summary host details

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testComputeHosts = oci.Core.getComputeHosts({
        compartmentId: compartmentId,
        availabilityDomain: computeHostAvailabilityDomain,
        computeHostHealth: computeHostComputeHostHealth,
        computeHostLifecycleState: computeHostComputeHostLifecycleState,
        displayName: computeHostDisplayName,
        networkResourceId: testResource.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_compute_hosts = oci.Core.get_compute_hosts(compartment_id=compartment_id,
        availability_domain=compute_host_availability_domain,
        compute_host_health=compute_host_compute_host_health,
        compute_host_lifecycle_state=compute_host_compute_host_lifecycle_state,
        display_name=compute_host_display_name,
        network_resource_id=test_resource["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := core.GetComputeHosts(ctx, &core.GetComputeHostsArgs{
    			CompartmentId:             compartmentId,
    			AvailabilityDomain:        pulumi.StringRef(computeHostAvailabilityDomain),
    			ComputeHostHealth:         pulumi.StringRef(computeHostComputeHostHealth),
    			ComputeHostLifecycleState: pulumi.StringRef(computeHostComputeHostLifecycleState),
    			DisplayName:               pulumi.StringRef(computeHostDisplayName),
    			NetworkResourceId:         pulumi.StringRef(testResource.Id),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testComputeHosts = Oci.Core.GetComputeHosts.Invoke(new()
        {
            CompartmentId = compartmentId,
            AvailabilityDomain = computeHostAvailabilityDomain,
            ComputeHostHealth = computeHostComputeHostHealth,
            ComputeHostLifecycleState = computeHostComputeHostLifecycleState,
            DisplayName = computeHostDisplayName,
            NetworkResourceId = testResource.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Core.CoreFunctions;
    import com.pulumi.oci.Core.inputs.GetComputeHostsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testComputeHosts = CoreFunctions.getComputeHosts(GetComputeHostsArgs.builder()
                .compartmentId(compartmentId)
                .availabilityDomain(computeHostAvailabilityDomain)
                .computeHostHealth(computeHostComputeHostHealth)
                .computeHostLifecycleState(computeHostComputeHostLifecycleState)
                .displayName(computeHostDisplayName)
                .networkResourceId(testResource.id())
                .build());
    
        }
    }
    
    variables:
      testComputeHosts:
        fn::invoke:
          function: oci:Core:getComputeHosts
          arguments:
            compartmentId: ${compartmentId}
            availabilityDomain: ${computeHostAvailabilityDomain}
            computeHostHealth: ${computeHostComputeHostHealth}
            computeHostLifecycleState: ${computeHostComputeHostLifecycleState}
            displayName: ${computeHostDisplayName}
            networkResourceId: ${testResource.id}
    

    Using getComputeHosts

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getComputeHosts(args: GetComputeHostsArgs, opts?: InvokeOptions): Promise<GetComputeHostsResult>
    function getComputeHostsOutput(args: GetComputeHostsOutputArgs, opts?: InvokeOptions): Output<GetComputeHostsResult>
    def get_compute_hosts(availability_domain: Optional[str] = None,
                          compartment_id: Optional[str] = None,
                          compute_host_health: Optional[str] = None,
                          compute_host_lifecycle_state: Optional[str] = None,
                          display_name: Optional[str] = None,
                          filters: Optional[Sequence[_core.GetComputeHostsFilter]] = None,
                          network_resource_id: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetComputeHostsResult
    def get_compute_hosts_output(availability_domain: Optional[pulumi.Input[str]] = None,
                          compartment_id: Optional[pulumi.Input[str]] = None,
                          compute_host_health: Optional[pulumi.Input[str]] = None,
                          compute_host_lifecycle_state: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetComputeHostsFilterArgs]]]] = None,
                          network_resource_id: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetComputeHostsResult]
    func GetComputeHosts(ctx *Context, args *GetComputeHostsArgs, opts ...InvokeOption) (*GetComputeHostsResult, error)
    func GetComputeHostsOutput(ctx *Context, args *GetComputeHostsOutputArgs, opts ...InvokeOption) GetComputeHostsResultOutput

    > Note: This function is named GetComputeHosts in the Go SDK.

    public static class GetComputeHosts 
    {
        public static Task<GetComputeHostsResult> InvokeAsync(GetComputeHostsArgs args, InvokeOptions? opts = null)
        public static Output<GetComputeHostsResult> Invoke(GetComputeHostsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetComputeHostsResult> getComputeHosts(GetComputeHostsArgs args, InvokeOptions options)
    public static Output<GetComputeHostsResult> getComputeHosts(GetComputeHostsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Core/getComputeHosts:getComputeHosts
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    ComputeHostHealth string
    A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
    ComputeHostLifecycleState string
    A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetComputeHostsFilter>
    NetworkResourceId string
    The OCID of the compute host network resoruce.

    • Customer-unique HPC island ID
    • Customer-unique network block ID
    • Customer-unique local block ID
    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    ComputeHostHealth string
    A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
    ComputeHostLifecycleState string
    A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetComputeHostsFilter
    NetworkResourceId string
    The OCID of the compute host network resoruce.

    • Customer-unique HPC island ID
    • Customer-unique network block ID
    • Customer-unique local block ID
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    computeHostHealth String
    A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
    computeHostLifecycleState String
    A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetComputeHostsFilter>
    networkResourceId String
    The OCID of the compute host network resoruce.

    • Customer-unique HPC island ID
    • Customer-unique network block ID
    • Customer-unique local block ID
    compartmentId string
    The OCID of the compartment.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    computeHostHealth string
    A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
    computeHostLifecycleState string
    A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetComputeHostsFilter[]
    networkResourceId string
    The OCID of the compute host network resoruce.

    • Customer-unique HPC island ID
    • Customer-unique network block ID
    • Customer-unique local block ID
    compartment_id str
    The OCID of the compartment.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compute_host_health str
    A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
    compute_host_lifecycle_state str
    A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[core.GetComputeHostsFilter]
    network_resource_id str
    The OCID of the compute host network resoruce.

    • Customer-unique HPC island ID
    • Customer-unique network block ID
    • Customer-unique local block ID
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    computeHostHealth String
    A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
    computeHostLifecycleState String
    A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    networkResourceId String
    The OCID of the compute host network resoruce.

    • Customer-unique HPC island ID
    • Customer-unique network block ID
    • Customer-unique local block ID

    getComputeHosts Result

    The following output properties are available:

    CompartmentId string
    The OCID for the compartment. This should always be the root compartment.
    ComputeHostCollections List<GetComputeHostsComputeHostCollection>
    The list of compute_host_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The availability domain of the compute host. Example: Uocm:US-CHICAGO-1-AD-2
    ComputeHostHealth string
    ComputeHostLifecycleState string
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetComputeHostsFilter>
    NetworkResourceId string
    CompartmentId string
    The OCID for the compartment. This should always be the root compartment.
    ComputeHostCollections []GetComputeHostsComputeHostCollection
    The list of compute_host_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The availability domain of the compute host. Example: Uocm:US-CHICAGO-1-AD-2
    ComputeHostHealth string
    ComputeHostLifecycleState string
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetComputeHostsFilter
    NetworkResourceId string
    compartmentId String
    The OCID for the compartment. This should always be the root compartment.
    computeHostCollections List<GetComputeHostsComputeHostCollection>
    The list of compute_host_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The availability domain of the compute host. Example: Uocm:US-CHICAGO-1-AD-2
    computeHostHealth String
    computeHostLifecycleState String
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetComputeHostsFilter>
    networkResourceId String
    compartmentId string
    The OCID for the compartment. This should always be the root compartment.
    computeHostCollections GetComputeHostsComputeHostCollection[]
    The list of compute_host_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    availabilityDomain string
    The availability domain of the compute host. Example: Uocm:US-CHICAGO-1-AD-2
    computeHostHealth string
    computeHostLifecycleState string
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetComputeHostsFilter[]
    networkResourceId string
    compartment_id str
    The OCID for the compartment. This should always be the root compartment.
    compute_host_collections Sequence[core.GetComputeHostsComputeHostCollection]
    The list of compute_host_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    availability_domain str
    The availability domain of the compute host. Example: Uocm:US-CHICAGO-1-AD-2
    compute_host_health str
    compute_host_lifecycle_state str
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[core.GetComputeHostsFilter]
    network_resource_id str
    compartmentId String
    The OCID for the compartment. This should always be the root compartment.
    computeHostCollections List<Property Map>
    The list of compute_host_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The availability domain of the compute host. Example: Uocm:US-CHICAGO-1-AD-2
    computeHostHealth String
    computeHostLifecycleState String
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    networkResourceId String

    Supporting Types

    GetComputeHostsComputeHostCollection

    GetComputeHostsComputeHostCollectionItem

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CapacityReservationId string
    The OCID for the Capacity Reserver that is currently on host
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FaultDomain string
    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.
    FreeformTags Dictionary<string, string>
    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. Example: {"Department": "Finance"}
    GpuMemoryFabricId string
    The OCID for Customer-unique GPU Memory Fabric
    HasImpactedComponents bool
    Health string
    The heathy state of the host
    HpcIslandId string
    The OCID for Customer-unique HPC Island
    Id string
    The OCID for the Customer-unique host
    InstanceId string
    The public OCID for the Virtual Machine or Bare Metal instance
    LifecycleDetails Dictionary<string, string>
    A free-form description detailing why the host is in its current state.
    LocalBlockId string
    The OCID for Customer-unique Local Block
    NetworkBlockId string
    The OCID for Customer-unique Network Block
    Shape string
    The shape of host
    State string
    The lifecycle state of the host
    TimeCreated string
    The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time that the compute host record was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CapacityReservationId string
    The OCID for the Capacity Reserver that is currently on host
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FaultDomain string
    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.
    FreeformTags map[string]string
    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. Example: {"Department": "Finance"}
    GpuMemoryFabricId string
    The OCID for Customer-unique GPU Memory Fabric
    HasImpactedComponents bool
    Health string
    The heathy state of the host
    HpcIslandId string
    The OCID for Customer-unique HPC Island
    Id string
    The OCID for the Customer-unique host
    InstanceId string
    The public OCID for the Virtual Machine or Bare Metal instance
    LifecycleDetails map[string]string
    A free-form description detailing why the host is in its current state.
    LocalBlockId string
    The OCID for Customer-unique Local Block
    NetworkBlockId string
    The OCID for Customer-unique Network Block
    Shape string
    The shape of host
    State string
    The lifecycle state of the host
    TimeCreated string
    The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time that the compute host record was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    capacityReservationId String
    The OCID for the Capacity Reserver that is currently on host
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    faultDomain String
    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.
    freeformTags Map<String,String>
    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. Example: {"Department": "Finance"}
    gpuMemoryFabricId String
    The OCID for Customer-unique GPU Memory Fabric
    hasImpactedComponents Boolean
    health String
    The heathy state of the host
    hpcIslandId String
    The OCID for Customer-unique HPC Island
    id String
    The OCID for the Customer-unique host
    instanceId String
    The public OCID for the Virtual Machine or Bare Metal instance
    lifecycleDetails Map<String,String>
    A free-form description detailing why the host is in its current state.
    localBlockId String
    The OCID for Customer-unique Local Block
    networkBlockId String
    The OCID for Customer-unique Network Block
    shape String
    The shape of host
    state String
    The lifecycle state of the host
    timeCreated String
    The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time that the compute host record was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    capacityReservationId string
    The OCID for the Capacity Reserver that is currently on host
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    faultDomain string
    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.
    freeformTags {[key: string]: string}
    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. Example: {"Department": "Finance"}
    gpuMemoryFabricId string
    The OCID for Customer-unique GPU Memory Fabric
    hasImpactedComponents boolean
    health string
    The heathy state of the host
    hpcIslandId string
    The OCID for Customer-unique HPC Island
    id string
    The OCID for the Customer-unique host
    instanceId string
    The public OCID for the Virtual Machine or Bare Metal instance
    lifecycleDetails {[key: string]: string}
    A free-form description detailing why the host is in its current state.
    localBlockId string
    The OCID for Customer-unique Local Block
    networkBlockId string
    The OCID for Customer-unique Network Block
    shape string
    The shape of host
    state string
    The lifecycle state of the host
    timeCreated string
    The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time that the compute host record was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    capacity_reservation_id str
    The OCID for the Capacity Reserver that is currently on host
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    fault_domain str
    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.
    freeform_tags Mapping[str, str]
    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. Example: {"Department": "Finance"}
    gpu_memory_fabric_id str
    The OCID for Customer-unique GPU Memory Fabric
    has_impacted_components bool
    health str
    The heathy state of the host
    hpc_island_id str
    The OCID for Customer-unique HPC Island
    id str
    The OCID for the Customer-unique host
    instance_id str
    The public OCID for the Virtual Machine or Bare Metal instance
    lifecycle_details Mapping[str, str]
    A free-form description detailing why the host is in its current state.
    local_block_id str
    The OCID for Customer-unique Local Block
    network_block_id str
    The OCID for Customer-unique Network Block
    shape str
    The shape of host
    state str
    The lifecycle state of the host
    time_created str
    The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time that the compute host record was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    capacityReservationId String
    The OCID for the Capacity Reserver that is currently on host
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    faultDomain String
    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.
    freeformTags Map<String>
    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. Example: {"Department": "Finance"}
    gpuMemoryFabricId String
    The OCID for Customer-unique GPU Memory Fabric
    hasImpactedComponents Boolean
    health String
    The heathy state of the host
    hpcIslandId String
    The OCID for Customer-unique HPC Island
    id String
    The OCID for the Customer-unique host
    instanceId String
    The public OCID for the Virtual Machine or Bare Metal instance
    lifecycleDetails Map<String>
    A free-form description detailing why the host is in its current state.
    localBlockId String
    The OCID for Customer-unique Local Block
    networkBlockId String
    The OCID for Customer-unique Network Block
    shape String
    The shape of host
    state String
    The lifecycle state of the host
    timeCreated String
    The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time that the compute host record was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    GetComputeHostsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi