oci.Ocvp.getExsiHosts
Explore with Pulumi AI
This data source provides the list of Esxi Hosts in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.
Lists the ESXi hosts in the specified SDDC. The list can be filtered by Compute instance OCID or ESXi display name.
Remember that in terms of implementation, an ESXi host is a Compute instance that
is configured with the chosen bundle of VMware software. Each EsxiHost
object has its own OCID (id
), and a separate attribute for the OCID of
the Compute instance (computeInstanceId
). When filtering the list of
ESXi hosts, you can specify the OCID of the Compute instance, not the
ESXi host OCID.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testEsxiHosts = oci.Ocvp.getExsiHosts({
clusterId: testCluster.id,
compartmentId: compartmentId,
computeInstanceId: testInstance.id,
displayName: esxiHostDisplayName,
isBillingDonorsOnly: esxiHostIsBillingDonorsOnly,
isSwapBillingOnly: esxiHostIsSwapBillingOnly,
sddcId: testSddc.id,
state: esxiHostState,
});
import pulumi
import pulumi_oci as oci
test_esxi_hosts = oci.Ocvp.get_exsi_hosts(cluster_id=test_cluster["id"],
compartment_id=compartment_id,
compute_instance_id=test_instance["id"],
display_name=esxi_host_display_name,
is_billing_donors_only=esxi_host_is_billing_donors_only,
is_swap_billing_only=esxi_host_is_swap_billing_only,
sddc_id=test_sddc["id"],
state=esxi_host_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Ocvp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Ocvp.GetExsiHosts(ctx, &ocvp.GetExsiHostsArgs{
ClusterId: pulumi.StringRef(testCluster.Id),
CompartmentId: pulumi.StringRef(compartmentId),
ComputeInstanceId: pulumi.StringRef(testInstance.Id),
DisplayName: pulumi.StringRef(esxiHostDisplayName),
IsBillingDonorsOnly: pulumi.BoolRef(esxiHostIsBillingDonorsOnly),
IsSwapBillingOnly: pulumi.BoolRef(esxiHostIsSwapBillingOnly),
SddcId: pulumi.StringRef(testSddc.Id),
State: pulumi.StringRef(esxiHostState),
}, 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 testEsxiHosts = Oci.Ocvp.GetExsiHosts.Invoke(new()
{
ClusterId = testCluster.Id,
CompartmentId = compartmentId,
ComputeInstanceId = testInstance.Id,
DisplayName = esxiHostDisplayName,
IsBillingDonorsOnly = esxiHostIsBillingDonorsOnly,
IsSwapBillingOnly = esxiHostIsSwapBillingOnly,
SddcId = testSddc.Id,
State = esxiHostState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Ocvp.OcvpFunctions;
import com.pulumi.oci.Ocvp.inputs.GetExsiHostsArgs;
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 testEsxiHosts = OcvpFunctions.getExsiHosts(GetExsiHostsArgs.builder()
.clusterId(testCluster.id())
.compartmentId(compartmentId)
.computeInstanceId(testInstance.id())
.displayName(esxiHostDisplayName)
.isBillingDonorsOnly(esxiHostIsBillingDonorsOnly)
.isSwapBillingOnly(esxiHostIsSwapBillingOnly)
.sddcId(testSddc.id())
.state(esxiHostState)
.build());
}
}
variables:
testEsxiHosts:
fn::invoke:
Function: oci:Ocvp:getExsiHosts
Arguments:
clusterId: ${testCluster.id}
compartmentId: ${compartmentId}
computeInstanceId: ${testInstance.id}
displayName: ${esxiHostDisplayName}
isBillingDonorsOnly: ${esxiHostIsBillingDonorsOnly}
isSwapBillingOnly: ${esxiHostIsSwapBillingOnly}
sddcId: ${testSddc.id}
state: ${esxiHostState}
Using getExsiHosts
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 getExsiHosts(args: GetExsiHostsArgs, opts?: InvokeOptions): Promise<GetExsiHostsResult>
function getExsiHostsOutput(args: GetExsiHostsOutputArgs, opts?: InvokeOptions): Output<GetExsiHostsResult>
def get_exsi_hosts(cluster_id: Optional[str] = None,
compartment_id: Optional[str] = None,
compute_instance_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_ocvp.GetExsiHostsFilter]] = None,
is_billing_donors_only: Optional[bool] = None,
is_swap_billing_only: Optional[bool] = None,
sddc_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetExsiHostsResult
def get_exsi_hosts_output(cluster_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compute_instance_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_ocvp.GetExsiHostsFilterArgs]]]] = None,
is_billing_donors_only: Optional[pulumi.Input[bool]] = None,
is_swap_billing_only: Optional[pulumi.Input[bool]] = None,
sddc_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetExsiHostsResult]
func GetExsiHosts(ctx *Context, args *GetExsiHostsArgs, opts ...InvokeOption) (*GetExsiHostsResult, error)
func GetExsiHostsOutput(ctx *Context, args *GetExsiHostsOutputArgs, opts ...InvokeOption) GetExsiHostsResultOutput
> Note: This function is named GetExsiHosts
in the Go SDK.
public static class GetExsiHosts
{
public static Task<GetExsiHostsResult> InvokeAsync(GetExsiHostsArgs args, InvokeOptions? opts = null)
public static Output<GetExsiHostsResult> Invoke(GetExsiHostsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetExsiHostsResult> getExsiHosts(GetExsiHostsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Ocvp/getExsiHosts:getExsiHosts
arguments:
# arguments dictionary
The following arguments are supported:
- Cluster
Id string - The OCID of the SDDC Cluster.
- Compartment
Id string - The OCID of the compartment as optional parameter.
- Compute
Instance stringId - The OCID of the Compute instance.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Exsi Hosts Filter> - Is
Billing boolDonors Only - If this flag/param is set to True, we return only deleted hosts with LeftOver billingCycle.
- Is
Swap boolBilling Only - If this flag/param is set to True, we return only active hosts.
- Sddc
Id string - The OCID of the SDDC.
- State string
- The lifecycle state of the resource.
- Cluster
Id string - The OCID of the SDDC Cluster.
- Compartment
Id string - The OCID of the compartment as optional parameter.
- Compute
Instance stringId - The OCID of the Compute instance.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Exsi Hosts Filter - Is
Billing boolDonors Only - If this flag/param is set to True, we return only deleted hosts with LeftOver billingCycle.
- Is
Swap boolBilling Only - If this flag/param is set to True, we return only active hosts.
- Sddc
Id string - The OCID of the SDDC.
- State string
- The lifecycle state of the resource.
- cluster
Id String - The OCID of the SDDC Cluster.
- compartment
Id String - The OCID of the compartment as optional parameter.
- compute
Instance StringId - The OCID of the Compute instance.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Exsi Hosts Filter> - is
Billing BooleanDonors Only - If this flag/param is set to True, we return only deleted hosts with LeftOver billingCycle.
- is
Swap BooleanBilling Only - If this flag/param is set to True, we return only active hosts.
- sddc
Id String - The OCID of the SDDC.
- state String
- The lifecycle state of the resource.
- cluster
Id string - The OCID of the SDDC Cluster.
- compartment
Id string - The OCID of the compartment as optional parameter.
- compute
Instance stringId - The OCID of the Compute instance.
- display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Exsi Hosts Filter[] - is
Billing booleanDonors Only - If this flag/param is set to True, we return only deleted hosts with LeftOver billingCycle.
- is
Swap booleanBilling Only - If this flag/param is set to True, we return only active hosts.
- sddc
Id string - The OCID of the SDDC.
- state string
- The lifecycle state of the resource.
- cluster_
id str - The OCID of the SDDC Cluster.
- compartment_
id str - The OCID of the compartment as optional parameter.
- compute_
instance_ strid - The OCID of the Compute instance.
- display_
name str - A filter to return only resources that match the given display name exactly.
- filters
Sequence[ocvp.
Get Exsi Hosts Filter] - is_
billing_ booldonors_ only - If this flag/param is set to True, we return only deleted hosts with LeftOver billingCycle.
- is_
swap_ boolbilling_ only - If this flag/param is set to True, we return only active hosts.
- sddc_
id str - The OCID of the SDDC.
- state str
- The lifecycle state of the resource.
- cluster
Id String - The OCID of the SDDC Cluster.
- compartment
Id String - The OCID of the compartment as optional parameter.
- compute
Instance StringId - The OCID of the Compute instance.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- is
Billing BooleanDonors Only - If this flag/param is set to True, we return only deleted hosts with LeftOver billingCycle.
- is
Swap BooleanBilling Only - If this flag/param is set to True, we return only active hosts.
- sddc
Id String - The OCID of the SDDC.
- state String
- The lifecycle state of the resource.
getExsiHosts Result
The following output properties are available:
- Esxi
Host List<GetCollections Exsi Hosts Esxi Host Collection> - The list of esxi_host_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Cluster
Id string - The OCID of the Cluster that the ESXi host belongs to.
- Compartment
Id string - The OCID of the compartment that contains the Cluster.
- Compute
Instance stringId - In terms of implementation, an ESXi host is a Compute instance that is configured with the chosen bundle of VMware software. The
computeInstanceId
is the OCID of that Compute instance. - Display
Name string - A descriptive name for the ESXi host. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Exsi Hosts Filter> - Is
Billing boolDonors Only - Is
Swap boolBilling Only - Sddc
Id string - The OCID of the SDDC that the ESXi host belongs to.
- State string
- The current state of the ESXi host.
- Esxi
Host []GetCollections Exsi Hosts Esxi Host Collection - The list of esxi_host_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Cluster
Id string - The OCID of the Cluster that the ESXi host belongs to.
- Compartment
Id string - The OCID of the compartment that contains the Cluster.
- Compute
Instance stringId - In terms of implementation, an ESXi host is a Compute instance that is configured with the chosen bundle of VMware software. The
computeInstanceId
is the OCID of that Compute instance. - Display
Name string - A descriptive name for the ESXi host. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Exsi Hosts Filter - Is
Billing boolDonors Only - Is
Swap boolBilling Only - Sddc
Id string - The OCID of the SDDC that the ESXi host belongs to.
- State string
- The current state of the ESXi host.
- esxi
Host List<GetCollections Exsi Hosts Esxi Host Collection> - The list of esxi_host_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- cluster
Id String - The OCID of the Cluster that the ESXi host belongs to.
- compartment
Id String - The OCID of the compartment that contains the Cluster.
- compute
Instance StringId - In terms of implementation, an ESXi host is a Compute instance that is configured with the chosen bundle of VMware software. The
computeInstanceId
is the OCID of that Compute instance. - display
Name String - A descriptive name for the ESXi host. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Exsi Hosts Filter> - is
Billing BooleanDonors Only - is
Swap BooleanBilling Only - sddc
Id String - The OCID of the SDDC that the ESXi host belongs to.
- state String
- The current state of the ESXi host.
- esxi
Host GetCollections Exsi Hosts Esxi Host Collection[] - The list of esxi_host_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- cluster
Id string - The OCID of the Cluster that the ESXi host belongs to.
- compartment
Id string - The OCID of the compartment that contains the Cluster.
- compute
Instance stringId - In terms of implementation, an ESXi host is a Compute instance that is configured with the chosen bundle of VMware software. The
computeInstanceId
is the OCID of that Compute instance. - display
Name string - A descriptive name for the ESXi host. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Exsi Hosts Filter[] - is
Billing booleanDonors Only - is
Swap booleanBilling Only - sddc
Id string - The OCID of the SDDC that the ESXi host belongs to.
- state string
- The current state of the ESXi host.
- esxi_
host_ Sequence[ocvp.collections Get Exsi Hosts Esxi Host Collection] - The list of esxi_host_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- cluster_
id str - The OCID of the Cluster that the ESXi host belongs to.
- compartment_
id str - The OCID of the compartment that contains the Cluster.
- compute_
instance_ strid - In terms of implementation, an ESXi host is a Compute instance that is configured with the chosen bundle of VMware software. The
computeInstanceId
is the OCID of that Compute instance. - display_
name str - A descriptive name for the ESXi host. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[ocvp.
Get Exsi Hosts Filter] - is_
billing_ booldonors_ only - is_
swap_ boolbilling_ only - sddc_
id str - The OCID of the SDDC that the ESXi host belongs to.
- state str
- The current state of the ESXi host.
- esxi
Host List<Property Map>Collections - The list of esxi_host_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- cluster
Id String - The OCID of the Cluster that the ESXi host belongs to.
- compartment
Id String - The OCID of the compartment that contains the Cluster.
- compute
Instance StringId - In terms of implementation, an ESXi host is a Compute instance that is configured with the chosen bundle of VMware software. The
computeInstanceId
is the OCID of that Compute instance. - display
Name String - A descriptive name for the ESXi host. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- is
Billing BooleanDonors Only - is
Swap BooleanBilling Only - sddc
Id String - The OCID of the SDDC that the ESXi host belongs to.
- state String
- The current state of the ESXi host.
Supporting Types
GetExsiHostsEsxiHostCollection
- Billing
Contract stringEnd Date - Current billing cycle end date. If the value in
currentCommitment
andnextCommitment
are different, the value specified innextCommitment
becomes the newcurrentCommitment
when thecontractEndDate
is reached. Example:2016-08-25T21:10:29.600Z
- Billing
Donor stringHost Id - The OCID of the deleted ESXi Host with LeftOver billing cycle.
- Capacity
Reservation stringId - The OCID of the Capacity Reservation.
- Cluster
Id string - The OCID of the SDDC Cluster.
- Compartment
Id string - The OCID of the compartment as optional parameter.
- Compute
Availability stringDomain - The availability domain of the ESXi host.
- Compute
Instance stringId - The OCID of the Compute instance.
- Current
Commitment string - The billing option currently used by the ESXi host. ListSupportedCommitments.
- Current
Sku string - (Deprecated) The billing option currently used by the ESXi host. ListSupportedSkus. Deprecated. Please use
current_commitment
instead. - 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 filter to return only resources that match the given display name exactly.
- Esxi
Software stringVersion - The version of ESXi software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- Failed
Esxi stringHost Id - The OCID of the ESXi host that failed.
- 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"}
- Grace
Period stringEnd Date - The date and time when the new esxi host should start billing cycle. RFC3339. Example:
2021-07-25T21:10:29.600Z
- Host
Ocpu doubleCount - The OCPU count of the ESXi host.
- Host
Shape stringName - The compute shape name of the ESXi host. ListSupportedHostShapes.
- Id string
- The OCID of the ESXi host.
- Is
Billing boolContinuation In Progress - Indicates whether this host is in the progress of billing continuation.
- Is
Billing boolSwapping In Progress - Indicates whether this host is in the progress of swapping billing.
- Next
Commitment string - The billing option to switch to after the current billing cycle ends. If
nextCommitment
is null or empty,currentCommitment
continues to the next billing cycle. ListSupportedCommitments. - Next
Sku string - (Deprecated) The billing option to switch to after the current billing cycle ends. If
nextSku
is null or empty,currentSku
continues to the next billing cycle. ListSupportedSkus. Deprecated. Please usenext_commitment
instead. - Non
Upgraded stringEsxi Host Id - The OCID of the ESXi host that will be upgraded.
- Replacement
Esxi stringHost Id - The OCID of the esxi host that is newly created to replace the failed node.
- Sddc
Id string - The OCID of the SDDC.
- State string
- The lifecycle state of the resource.
- Swap
Billing stringHost Id - The OCID of the active ESXi Host to swap billing with current host.
- Time
Created string - The date and time the ESXi host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string - The date and time the ESXi host was updated, in the format defined by RFC3339.
- Upgraded
Replacement stringEsxi Host Id - The OCID of the ESXi host that is newly created to upgrade the original host.
- Vmware
Software stringVersion - The version of VMware software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- Billing
Contract stringEnd Date - Current billing cycle end date. If the value in
currentCommitment
andnextCommitment
are different, the value specified innextCommitment
becomes the newcurrentCommitment
when thecontractEndDate
is reached. Example:2016-08-25T21:10:29.600Z
- Billing
Donor stringHost Id - The OCID of the deleted ESXi Host with LeftOver billing cycle.
- Capacity
Reservation stringId - The OCID of the Capacity Reservation.
- Cluster
Id string - The OCID of the SDDC Cluster.
- Compartment
Id string - The OCID of the compartment as optional parameter.
- Compute
Availability stringDomain - The availability domain of the ESXi host.
- Compute
Instance stringId - The OCID of the Compute instance.
- Current
Commitment string - The billing option currently used by the ESXi host. ListSupportedCommitments.
- Current
Sku string - (Deprecated) The billing option currently used by the ESXi host. ListSupportedSkus. Deprecated. Please use
current_commitment
instead. - 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 filter to return only resources that match the given display name exactly.
- Esxi
Software stringVersion - The version of ESXi software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- Failed
Esxi stringHost Id - The OCID of the ESXi host that failed.
- 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"}
- Grace
Period stringEnd Date - The date and time when the new esxi host should start billing cycle. RFC3339. Example:
2021-07-25T21:10:29.600Z
- Host
Ocpu float64Count - The OCPU count of the ESXi host.
- Host
Shape stringName - The compute shape name of the ESXi host. ListSupportedHostShapes.
- Id string
- The OCID of the ESXi host.
- Is
Billing boolContinuation In Progress - Indicates whether this host is in the progress of billing continuation.
- Is
Billing boolSwapping In Progress - Indicates whether this host is in the progress of swapping billing.
- Next
Commitment string - The billing option to switch to after the current billing cycle ends. If
nextCommitment
is null or empty,currentCommitment
continues to the next billing cycle. ListSupportedCommitments. - Next
Sku string - (Deprecated) The billing option to switch to after the current billing cycle ends. If
nextSku
is null or empty,currentSku
continues to the next billing cycle. ListSupportedSkus. Deprecated. Please usenext_commitment
instead. - Non
Upgraded stringEsxi Host Id - The OCID of the ESXi host that will be upgraded.
- Replacement
Esxi stringHost Id - The OCID of the esxi host that is newly created to replace the failed node.
- Sddc
Id string - The OCID of the SDDC.
- State string
- The lifecycle state of the resource.
- Swap
Billing stringHost Id - The OCID of the active ESXi Host to swap billing with current host.
- Time
Created string - The date and time the ESXi host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string - The date and time the ESXi host was updated, in the format defined by RFC3339.
- Upgraded
Replacement stringEsxi Host Id - The OCID of the ESXi host that is newly created to upgrade the original host.
- Vmware
Software stringVersion - The version of VMware software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- billing
Contract StringEnd Date - Current billing cycle end date. If the value in
currentCommitment
andnextCommitment
are different, the value specified innextCommitment
becomes the newcurrentCommitment
when thecontractEndDate
is reached. Example:2016-08-25T21:10:29.600Z
- billing
Donor StringHost Id - The OCID of the deleted ESXi Host with LeftOver billing cycle.
- capacity
Reservation StringId - The OCID of the Capacity Reservation.
- cluster
Id String - The OCID of the SDDC Cluster.
- compartment
Id String - The OCID of the compartment as optional parameter.
- compute
Availability StringDomain - The availability domain of the ESXi host.
- compute
Instance StringId - The OCID of the Compute instance.
- current
Commitment String - The billing option currently used by the ESXi host. ListSupportedCommitments.
- current
Sku String - (Deprecated) The billing option currently used by the ESXi host. ListSupportedSkus. Deprecated. Please use
current_commitment
instead. - 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 filter to return only resources that match the given display name exactly.
- esxi
Software StringVersion - The version of ESXi software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- failed
Esxi StringHost Id - The OCID of the ESXi host that failed.
- 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"}
- grace
Period StringEnd Date - The date and time when the new esxi host should start billing cycle. RFC3339. Example:
2021-07-25T21:10:29.600Z
- host
Ocpu DoubleCount - The OCPU count of the ESXi host.
- host
Shape StringName - The compute shape name of the ESXi host. ListSupportedHostShapes.
- id String
- The OCID of the ESXi host.
- is
Billing BooleanContinuation In Progress - Indicates whether this host is in the progress of billing continuation.
- is
Billing BooleanSwapping In Progress - Indicates whether this host is in the progress of swapping billing.
- next
Commitment String - The billing option to switch to after the current billing cycle ends. If
nextCommitment
is null or empty,currentCommitment
continues to the next billing cycle. ListSupportedCommitments. - next
Sku String - (Deprecated) The billing option to switch to after the current billing cycle ends. If
nextSku
is null or empty,currentSku
continues to the next billing cycle. ListSupportedSkus. Deprecated. Please usenext_commitment
instead. - non
Upgraded StringEsxi Host Id - The OCID of the ESXi host that will be upgraded.
- replacement
Esxi StringHost Id - The OCID of the esxi host that is newly created to replace the failed node.
- sddc
Id String - The OCID of the SDDC.
- state String
- The lifecycle state of the resource.
- swap
Billing StringHost Id - The OCID of the active ESXi Host to swap billing with current host.
- time
Created String - The date and time the ESXi host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String - The date and time the ESXi host was updated, in the format defined by RFC3339.
- upgraded
Replacement StringEsxi Host Id - The OCID of the ESXi host that is newly created to upgrade the original host.
- vmware
Software StringVersion - The version of VMware software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- billing
Contract stringEnd Date - Current billing cycle end date. If the value in
currentCommitment
andnextCommitment
are different, the value specified innextCommitment
becomes the newcurrentCommitment
when thecontractEndDate
is reached. Example:2016-08-25T21:10:29.600Z
- billing
Donor stringHost Id - The OCID of the deleted ESXi Host with LeftOver billing cycle.
- capacity
Reservation stringId - The OCID of the Capacity Reservation.
- cluster
Id string - The OCID of the SDDC Cluster.
- compartment
Id string - The OCID of the compartment as optional parameter.
- compute
Availability stringDomain - The availability domain of the ESXi host.
- compute
Instance stringId - The OCID of the Compute instance.
- current
Commitment string - The billing option currently used by the ESXi host. ListSupportedCommitments.
- current
Sku string - (Deprecated) The billing option currently used by the ESXi host. ListSupportedSkus. Deprecated. Please use
current_commitment
instead. - {[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 filter to return only resources that match the given display name exactly.
- esxi
Software stringVersion - The version of ESXi software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- failed
Esxi stringHost Id - The OCID of the ESXi host that failed.
- {[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"}
- grace
Period stringEnd Date - The date and time when the new esxi host should start billing cycle. RFC3339. Example:
2021-07-25T21:10:29.600Z
- host
Ocpu numberCount - The OCPU count of the ESXi host.
- host
Shape stringName - The compute shape name of the ESXi host. ListSupportedHostShapes.
- id string
- The OCID of the ESXi host.
- is
Billing booleanContinuation In Progress - Indicates whether this host is in the progress of billing continuation.
- is
Billing booleanSwapping In Progress - Indicates whether this host is in the progress of swapping billing.
- next
Commitment string - The billing option to switch to after the current billing cycle ends. If
nextCommitment
is null or empty,currentCommitment
continues to the next billing cycle. ListSupportedCommitments. - next
Sku string - (Deprecated) The billing option to switch to after the current billing cycle ends. If
nextSku
is null or empty,currentSku
continues to the next billing cycle. ListSupportedSkus. Deprecated. Please usenext_commitment
instead. - non
Upgraded stringEsxi Host Id - The OCID of the ESXi host that will be upgraded.
- replacement
Esxi stringHost Id - The OCID of the esxi host that is newly created to replace the failed node.
- sddc
Id string - The OCID of the SDDC.
- state string
- The lifecycle state of the resource.
- swap
Billing stringHost Id - The OCID of the active ESXi Host to swap billing with current host.
- time
Created string - The date and time the ESXi host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated string - The date and time the ESXi host was updated, in the format defined by RFC3339.
- upgraded
Replacement stringEsxi Host Id - The OCID of the ESXi host that is newly created to upgrade the original host.
- vmware
Software stringVersion - The version of VMware software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- billing_
contract_ strend_ date - Current billing cycle end date. If the value in
currentCommitment
andnextCommitment
are different, the value specified innextCommitment
becomes the newcurrentCommitment
when thecontractEndDate
is reached. Example:2016-08-25T21:10:29.600Z
- billing_
donor_ strhost_ id - The OCID of the deleted ESXi Host with LeftOver billing cycle.
- capacity_
reservation_ strid - The OCID of the Capacity Reservation.
- cluster_
id str - The OCID of the SDDC Cluster.
- compartment_
id str - The OCID of the compartment as optional parameter.
- compute_
availability_ strdomain - The availability domain of the ESXi host.
- compute_
instance_ strid - The OCID of the Compute instance.
- current_
commitment str - The billing option currently used by the ESXi host. ListSupportedCommitments.
- current_
sku str - (Deprecated) The billing option currently used by the ESXi host. ListSupportedSkus. Deprecated. Please use
current_commitment
instead. - 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.
- esxi_
software_ strversion - The version of ESXi software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- failed_
esxi_ strhost_ id - The OCID of the ESXi host that failed.
- 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"}
- grace_
period_ strend_ date - The date and time when the new esxi host should start billing cycle. RFC3339. Example:
2021-07-25T21:10:29.600Z
- host_
ocpu_ floatcount - The OCPU count of the ESXi host.
- host_
shape_ strname - The compute shape name of the ESXi host. ListSupportedHostShapes.
- id str
- The OCID of the ESXi host.
- is_
billing_ boolcontinuation_ in_ progress - Indicates whether this host is in the progress of billing continuation.
- is_
billing_ boolswapping_ in_ progress - Indicates whether this host is in the progress of swapping billing.
- next_
commitment str - The billing option to switch to after the current billing cycle ends. If
nextCommitment
is null or empty,currentCommitment
continues to the next billing cycle. ListSupportedCommitments. - next_
sku str - (Deprecated) The billing option to switch to after the current billing cycle ends. If
nextSku
is null or empty,currentSku
continues to the next billing cycle. ListSupportedSkus. Deprecated. Please usenext_commitment
instead. - non_
upgraded_ stresxi_ host_ id - The OCID of the ESXi host that will be upgraded.
- replacement_
esxi_ strhost_ id - The OCID of the esxi host that is newly created to replace the failed node.
- sddc_
id str - The OCID of the SDDC.
- state str
- The lifecycle state of the resource.
- swap_
billing_ strhost_ id - The OCID of the active ESXi Host to swap billing with current host.
- time_
created str - The date and time the ESXi host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time_
updated str - The date and time the ESXi host was updated, in the format defined by RFC3339.
- upgraded_
replacement_ stresxi_ host_ id - The OCID of the ESXi host that is newly created to upgrade the original host.
- vmware_
software_ strversion - The version of VMware software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- billing
Contract StringEnd Date - Current billing cycle end date. If the value in
currentCommitment
andnextCommitment
are different, the value specified innextCommitment
becomes the newcurrentCommitment
when thecontractEndDate
is reached. Example:2016-08-25T21:10:29.600Z
- billing
Donor StringHost Id - The OCID of the deleted ESXi Host with LeftOver billing cycle.
- capacity
Reservation StringId - The OCID of the Capacity Reservation.
- cluster
Id String - The OCID of the SDDC Cluster.
- compartment
Id String - The OCID of the compartment as optional parameter.
- compute
Availability StringDomain - The availability domain of the ESXi host.
- compute
Instance StringId - The OCID of the Compute instance.
- current
Commitment String - The billing option currently used by the ESXi host. ListSupportedCommitments.
- current
Sku String - (Deprecated) The billing option currently used by the ESXi host. ListSupportedSkus. Deprecated. Please use
current_commitment
instead. - 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 filter to return only resources that match the given display name exactly.
- esxi
Software StringVersion - The version of ESXi software that Oracle Cloud VMware Solution installed on the ESXi hosts.
- failed
Esxi StringHost Id - The OCID of the ESXi host that failed.
- 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"}
- grace
Period StringEnd Date - The date and time when the new esxi host should start billing cycle. RFC3339. Example:
2021-07-25T21:10:29.600Z
- host
Ocpu NumberCount - The OCPU count of the ESXi host.
- host
Shape StringName - The compute shape name of the ESXi host. ListSupportedHostShapes.
- id String
- The OCID of the ESXi host.
- is
Billing BooleanContinuation In Progress - Indicates whether this host is in the progress of billing continuation.
- is
Billing BooleanSwapping In Progress - Indicates whether this host is in the progress of swapping billing.
- next
Commitment String - The billing option to switch to after the current billing cycle ends. If
nextCommitment
is null or empty,currentCommitment
continues to the next billing cycle. ListSupportedCommitments. - next
Sku String - (Deprecated) The billing option to switch to after the current billing cycle ends. If
nextSku
is null or empty,currentSku
continues to the next billing cycle. ListSupportedSkus. Deprecated. Please usenext_commitment
instead. - non
Upgraded StringEsxi Host Id - The OCID of the ESXi host that will be upgraded.
- replacement
Esxi StringHost Id - The OCID of the esxi host that is newly created to replace the failed node.
- sddc
Id String - The OCID of the SDDC.
- state String
- The lifecycle state of the resource.
- swap
Billing StringHost Id - The OCID of the active ESXi Host to swap billing with current host.
- time
Created String - The date and time the ESXi host was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String - The date and time the ESXi host was updated, in the format defined by RFC3339.
- upgraded
Replacement StringEsxi Host Id - The OCID of the ESXi host that is newly created to upgrade the original host.
- vmware
Software StringVersion - The version of VMware software that Oracle Cloud VMware Solution installed on the ESXi hosts.
GetExsiHostsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.