Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi
oci.Core.getComputeHost
Explore with Pulumi AI
This data source provides details about a specific Compute Host resource in Oracle Cloud Infrastructure Core service.
Gets information about the specified compute host
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testComputeHost = oci.Core.getComputeHost({
computeHostId: testComputeHostOciCoreComputeHost.id,
});
import pulumi
import pulumi_oci as oci
test_compute_host = oci.Core.get_compute_host(compute_host_id=test_compute_host_oci_core_compute_host["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.GetComputeHost(ctx, &core.GetComputeHostArgs{
ComputeHostId: testComputeHostOciCoreComputeHost.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 testComputeHost = Oci.Core.GetComputeHost.Invoke(new()
{
ComputeHostId = testComputeHostOciCoreComputeHost.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.GetComputeHostArgs;
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 testComputeHost = CoreFunctions.getComputeHost(GetComputeHostArgs.builder()
.computeHostId(testComputeHostOciCoreComputeHost.id())
.build());
}
}
variables:
testComputeHost:
fn::invoke:
function: oci:Core:getComputeHost
arguments:
computeHostId: ${testComputeHostOciCoreComputeHost.id}
Using getComputeHost
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 getComputeHost(args: GetComputeHostArgs, opts?: InvokeOptions): Promise<GetComputeHostResult>
function getComputeHostOutput(args: GetComputeHostOutputArgs, opts?: InvokeOptions): Output<GetComputeHostResult>
def get_compute_host(compute_host_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetComputeHostResult
def get_compute_host_output(compute_host_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetComputeHostResult]
func GetComputeHost(ctx *Context, args *GetComputeHostArgs, opts ...InvokeOption) (*GetComputeHostResult, error)
func GetComputeHostOutput(ctx *Context, args *GetComputeHostOutputArgs, opts ...InvokeOption) GetComputeHostResultOutput
> Note: This function is named GetComputeHost
in the Go SDK.
public static class GetComputeHost
{
public static Task<GetComputeHostResult> InvokeAsync(GetComputeHostArgs args, InvokeOptions? opts = null)
public static Output<GetComputeHostResult> Invoke(GetComputeHostInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetComputeHostResult> getComputeHost(GetComputeHostArgs args, InvokeOptions options)
public static Output<GetComputeHostResult> getComputeHost(GetComputeHostArgs args, InvokeOptions options)
fn::invoke:
function: oci:Core/getComputeHost:getComputeHost
arguments:
# arguments dictionary
The following arguments are supported:
- Compute
Host stringId - The OCID of the compute host.
- Compute
Host stringId - The OCID of the compute host.
- compute
Host StringId - The OCID of the compute host.
- compute
Host stringId - The OCID of the compute host.
- compute_
host_ strid - The OCID of the compute host.
- compute
Host StringId - The OCID of the compute host.
getComputeHost Result
The following output properties are available:
- Additional
Data string - Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
- Availability
Domain string - The availability domain of the compute host. Example:
Uocm:US-CHICAGO-1-AD-2
- Capacity
Reservation stringId - The OCID for the Capacity Reserver that is currently on host
- Compartment
Id string - The OCID for the compartment. This should always be the root compartment.
- Compute
Host stringId - 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"}
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fault
Domain 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.
- 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"}
- Gpu
Memory stringFabric Id - The OCID for Customer-unique GPU Memory Fabric
- Health string
- The heathy state of the host
- Hpc
Island stringId - The OCID for Customer-unique HPC Island
- Id string
- The provider-assigned unique ID for this managed resource.
- Impacted
Component stringDetails - A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
- Instance
Id string - The public OCID for the Virtual Machine or Bare Metal instance
- Lifecycle
Details Dictionary<string, string> - A free-form description detailing why the host is in its current state.
- Local
Block stringId - The OCID for Customer-unique Local Block
- Network
Block stringId - The OCID for Customer-unique Network Block
- Shape string
- The shape of host
- State string
- The lifecycle state of the host
- Time
Created 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
- Time
Updated 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
- Additional
Data string - Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
- Availability
Domain string - The availability domain of the compute host. Example:
Uocm:US-CHICAGO-1-AD-2
- Capacity
Reservation stringId - The OCID for the Capacity Reserver that is currently on host
- Compartment
Id string - The OCID for the compartment. This should always be the root compartment.
- Compute
Host stringId - 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"}
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fault
Domain 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.
- 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"}
- Gpu
Memory stringFabric Id - The OCID for Customer-unique GPU Memory Fabric
- Health string
- The heathy state of the host
- Hpc
Island stringId - The OCID for Customer-unique HPC Island
- Id string
- The provider-assigned unique ID for this managed resource.
- Impacted
Component stringDetails - A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
- Instance
Id string - The public OCID for the Virtual Machine or Bare Metal instance
- Lifecycle
Details map[string]string - A free-form description detailing why the host is in its current state.
- Local
Block stringId - The OCID for Customer-unique Local Block
- Network
Block stringId - The OCID for Customer-unique Network Block
- Shape string
- The shape of host
- State string
- The lifecycle state of the host
- Time
Created 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
- Time
Updated 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
- additional
Data String - Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
- availability
Domain String - The availability domain of the compute host. Example:
Uocm:US-CHICAGO-1-AD-2
- capacity
Reservation StringId - The OCID for the Capacity Reserver that is currently on host
- compartment
Id String - The OCID for the compartment. This should always be the root compartment.
- compute
Host StringId - 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"}
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain 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.
- 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"}
- gpu
Memory StringFabric Id - The OCID for Customer-unique GPU Memory Fabric
- health String
- The heathy state of the host
- hpc
Island StringId - The OCID for Customer-unique HPC Island
- id String
- The provider-assigned unique ID for this managed resource.
- impacted
Component StringDetails - A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
- instance
Id String - The public OCID for the Virtual Machine or Bare Metal instance
- lifecycle
Details Map<String,String> - A free-form description detailing why the host is in its current state.
- local
Block StringId - The OCID for Customer-unique Local Block
- network
Block StringId - The OCID for Customer-unique Network Block
- shape String
- The shape of host
- state String
- The lifecycle state of the host
- time
Created 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
- time
Updated 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
- additional
Data string - Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
- availability
Domain string - The availability domain of the compute host. Example:
Uocm:US-CHICAGO-1-AD-2
- capacity
Reservation stringId - The OCID for the Capacity Reserver that is currently on host
- compartment
Id string - The OCID for the compartment. This should always be the root compartment.
- compute
Host stringId - {[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"}
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain 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.
- {[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"}
- gpu
Memory stringFabric Id - The OCID for Customer-unique GPU Memory Fabric
- health string
- The heathy state of the host
- hpc
Island stringId - The OCID for Customer-unique HPC Island
- id string
- The provider-assigned unique ID for this managed resource.
- impacted
Component stringDetails - A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
- instance
Id string - The public OCID for the Virtual Machine or Bare Metal instance
- lifecycle
Details {[key: string]: string} - A free-form description detailing why the host is in its current state.
- local
Block stringId - The OCID for Customer-unique Local Block
- network
Block stringId - The OCID for Customer-unique Network Block
- shape string
- The shape of host
- state string
- The lifecycle state of the host
- time
Created 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
- time
Updated 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
- additional_
data str - Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
- availability_
domain str - The availability domain of the compute host. Example:
Uocm:US-CHICAGO-1-AD-2
- capacity_
reservation_ strid - The OCID for the Capacity Reserver that is currently on host
- compartment_
id str - The OCID for the compartment. This should always be the root compartment.
- compute_
host_ strid - 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 user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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.
- 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_ strfabric_ id - The OCID for Customer-unique GPU Memory Fabric
- health str
- The heathy state of the host
- hpc_
island_ strid - The OCID for Customer-unique HPC Island
- id str
- The provider-assigned unique ID for this managed resource.
- impacted_
component_ strdetails - A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
- 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_ strid - The OCID for Customer-unique Local Block
- network_
block_ strid - 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
- additional
Data String - Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
- availability
Domain String - The availability domain of the compute host. Example:
Uocm:US-CHICAGO-1-AD-2
- capacity
Reservation StringId - The OCID for the Capacity Reserver that is currently on host
- compartment
Id String - The OCID for the compartment. This should always be the root compartment.
- compute
Host StringId - 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"}
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain 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.
- 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"}
- gpu
Memory StringFabric Id - The OCID for Customer-unique GPU Memory Fabric
- health String
- The heathy state of the host
- hpc
Island StringId - The OCID for Customer-unique HPC Island
- id String
- The provider-assigned unique ID for this managed resource.
- impacted
Component StringDetails - A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
- instance
Id String - The public OCID for the Virtual Machine or Bare Metal instance
- lifecycle
Details Map<String> - A free-form description detailing why the host is in its current state.
- local
Block StringId - The OCID for Customer-unique Local Block
- network
Block StringId - The OCID for Customer-unique Network Block
- shape String
- The shape of host
- state String
- The lifecycle state of the host
- time
Created 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
- time
Updated 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
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.