vSphere
getHost
The vsphere.Host
data source can be used to discover the ID of a vSphere
host. This can then be used with resources or data sources that require a host
managed object reference ID.
Example Usage
using Pulumi;
using VSphere = Pulumi.VSphere;
class MyStack : Stack
{
public MyStack()
{
var datacenter = Output.Create(VSphere.GetDatacenter.InvokeAsync(new VSphere.GetDatacenterArgs
{
Name = "dc1",
}));
var host = datacenter.Apply(datacenter => Output.Create(VSphere.GetHost.InvokeAsync(new VSphere.GetHostArgs
{
DatacenterId = datacenter.Id,
Name = "esxi1",
})));
}
}
package main
import (
"github.com/pulumi/pulumi-vsphere/sdk/v4/go/vsphere"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
opt0 := "dc1"
datacenter, err := vsphere.LookupDatacenter(ctx, &GetDatacenterArgs{
Name: &opt0,
}, nil)
if err != nil {
return err
}
opt1 := "esxi1"
_, err = vsphere.LookupHost(ctx, &GetHostArgs{
DatacenterId: datacenter.Id,
Name: &opt1,
}, nil)
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_vsphere as vsphere
datacenter = vsphere.get_datacenter(name="dc1")
host = vsphere.get_host(datacenter_id=datacenter.id,
name="esxi1")
import * as pulumi from "@pulumi/pulumi";
import * as vsphere from "@pulumi/vsphere";
const datacenter = pulumi.output(vsphere.getDatacenter({
name: "dc1",
}));
const host = datacenter.apply(datacenter => vsphere.getHost({
datacenterId: datacenter.id,
name: "esxi1",
}));
Coming soon!
Using getHost
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 getHost(args: GetHostArgs, opts?: InvokeOptions): Promise<GetHostResult>
function getHostOutput(args: GetHostOutputArgs, opts?: InvokeOptions): Output<GetHostResult>
def get_host(datacenter_id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetHostResult
def get_host_output(datacenter_id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetHostResult]
func LookupHost(ctx *Context, args *LookupHostArgs, opts ...InvokeOption) (*LookupHostResult, error)
func LookupHostOutput(ctx *Context, args *LookupHostOutputArgs, opts ...InvokeOption) LookupHostResultOutput
> Note: This function is named LookupHost
in the Go SDK.
public static class GetHost
{
public static Task<GetHostResult> InvokeAsync(GetHostArgs args, InvokeOptions? opts = null)
public static Output<GetHostResult> Invoke(GetHostInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetHostResult> getHost(GetHostArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: vsphere:index/getHost:getHost
Arguments:
# Arguments dictionary
The following arguments are supported:
- Datacenter
Id string The managed object reference ID of a datacenter.
- Name string
The name of the host. This can be a name or path. Can be omitted if there is only one host in your inventory.
- Datacenter
Id string The managed object reference ID of a datacenter.
- Name string
The name of the host. This can be a name or path. Can be omitted if there is only one host in your inventory.
- datacenter
Id String The managed object reference ID of a datacenter.
- name String
The name of the host. This can be a name or path. Can be omitted if there is only one host in your inventory.
- datacenter
Id string The managed object reference ID of a datacenter.
- name string
The name of the host. This can be a name or path. Can be omitted if there is only one host in your inventory.
- datacenter_
id str The managed object reference ID of a datacenter.
- name str
The name of the host. This can be a name or path. Can be omitted if there is only one host in your inventory.
- datacenter
Id String The managed object reference ID of a datacenter.
- name String
The name of the host. This can be a name or path. Can be omitted if there is only one host in your inventory.
getHost Result
The following output properties are available:
- Datacenter
Id string - Id string
The provider-assigned unique ID for this managed resource.
- Resource
Pool stringId The managed object ID of the host's root resource pool.
- Name string
- Datacenter
Id string - Id string
The provider-assigned unique ID for this managed resource.
- Resource
Pool stringId The managed object ID of the host's root resource pool.
- Name string
- datacenter
Id String - id String
The provider-assigned unique ID for this managed resource.
- resource
Pool StringId The managed object ID of the host's root resource pool.
- name String
- datacenter
Id string - id string
The provider-assigned unique ID for this managed resource.
- resource
Pool stringId The managed object ID of the host's root resource pool.
- name string
- datacenter_
id str - id str
The provider-assigned unique ID for this managed resource.
- resource_
pool_ strid The managed object ID of the host's root resource pool.
- name str
- datacenter
Id String - id String
The provider-assigned unique ID for this managed resource.
- resource
Pool StringId The managed object ID of the host's root resource pool.
- name String
Package Details
- Repository
- https://github.com/pulumi/pulumi-vsphere
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
vsphere
Terraform Provider.