Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.Ocvp.getCluster
Explore with Pulumi AI
This data source provides details about a specific Cluster resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.
Gets the specified Cluster’s information.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCluster = oci.Ocvp.getCluster({
clusterId: testClusterOciOcvpCluster.id,
});
import pulumi
import pulumi_oci as oci
test_cluster = oci.Ocvp.get_cluster(cluster_id=test_cluster_oci_ocvp_cluster["id"])
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.GetCluster(ctx, &ocvp.GetClusterArgs{
ClusterId: testClusterOciOcvpCluster.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 testCluster = Oci.Ocvp.GetCluster.Invoke(new()
{
ClusterId = testClusterOciOcvpCluster.Id,
});
});
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.GetClusterArgs;
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 testCluster = OcvpFunctions.getCluster(GetClusterArgs.builder()
.clusterId(testClusterOciOcvpCluster.id())
.build());
}
}
variables:
testCluster:
fn::invoke:
Function: oci:Ocvp:getCluster
Arguments:
clusterId: ${testClusterOciOcvpCluster.id}
Using getCluster
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 getCluster(args: GetClusterArgs, opts?: InvokeOptions): Promise<GetClusterResult>
function getClusterOutput(args: GetClusterOutputArgs, opts?: InvokeOptions): Output<GetClusterResult>
def get_cluster(cluster_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetClusterResult
def get_cluster_output(cluster_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetClusterResult]
func GetCluster(ctx *Context, args *GetClusterArgs, opts ...InvokeOption) (*GetClusterResult, error)
func GetClusterOutput(ctx *Context, args *GetClusterOutputArgs, opts ...InvokeOption) GetClusterResultOutput
> Note: This function is named GetCluster
in the Go SDK.
public static class GetCluster
{
public static Task<GetClusterResult> InvokeAsync(GetClusterArgs args, InvokeOptions? opts = null)
public static Output<GetClusterResult> Invoke(GetClusterInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetClusterResult> getCluster(GetClusterArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Ocvp/getCluster:getCluster
arguments:
# arguments dictionary
The following arguments are supported:
- cluster_
id str - The OCID of the SDDC Cluster.
getCluster Result
The following output properties are available:
- Actual
Esxi intHosts Count - Capacity
Reservation stringId - The OCID of the Capacity Reservation.
- Cluster
Id string - Compartment
Id string - The OCID of the compartment that contains the Cluster.
- Compute
Availability stringDomain - The availability domain the ESXi hosts are running in. For Multi-AD Cluster, it is
multi-AD
. Example:Uocm:PHX-AD-1
,multi-AD
- Datastores
List<Get
Cluster Datastore> - Datastores used for the Cluster.
- 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 descriptive name for the Cluster. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
- Esxi
Hosts intCount - The number of ESXi hosts in the Cluster.
- Esxi
Software stringVersion - In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- 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"}
- Id string
- The OCID of the Cluster.
- Initial
Commitment string - The billing option selected during Cluster creation. ListSupportedCommitments.
- Initial
Host doubleOcpu Count - The initial OCPU count of the Cluster's ESXi hosts.
- Initial
Host stringShape Name - The initial compute shape of the Cluster's ESXi hosts. ListSupportedHostShapes.
- Instance
Display stringName Prefix - A prefix used in the name of each ESXi host and Compute instance in the Cluster. If this isn't set, the Cluster's
displayName
is used as the prefix. - Is
Shielded boolInstance Enabled - Indicates whether shielded instance is enabled at the Cluster level.
- Network
Configurations List<GetCluster Network Configuration> - The network configurations used by Cluster, including OCIDs of the management subnet and VLANs.
- Sddc
Id string - The OCID of the SDDC that the Cluster belongs to.
- State string
- The current state of the Cluster.
- Time
Created string - The date and time the Cluster was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string - The date and time the Cluster was updated, in the format defined by RFC3339.
- Upgrade
Licenses List<GetCluster Upgrade License> - The vSphere licenses to use when upgrading the Cluster.
- Vmware
Software stringVersion - In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- Vsphere
Type string - vSphere Cluster types.
- Vsphere
Upgrade List<GetObjects Cluster Vsphere Upgrade Object> - The links to binary objects needed to upgrade vSphere.
- Workload
Network stringCidr - The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- Actual
Esxi intHosts Count - Capacity
Reservation stringId - The OCID of the Capacity Reservation.
- Cluster
Id string - Compartment
Id string - The OCID of the compartment that contains the Cluster.
- Compute
Availability stringDomain - The availability domain the ESXi hosts are running in. For Multi-AD Cluster, it is
multi-AD
. Example:Uocm:PHX-AD-1
,multi-AD
- Datastores
[]Get
Cluster Datastore - Datastores used for the Cluster.
- 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 descriptive name for the Cluster. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
- Esxi
Hosts intCount - The number of ESXi hosts in the Cluster.
- Esxi
Software stringVersion - In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- 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"}
- Id string
- The OCID of the Cluster.
- Initial
Commitment string - The billing option selected during Cluster creation. ListSupportedCommitments.
- Initial
Host float64Ocpu Count - The initial OCPU count of the Cluster's ESXi hosts.
- Initial
Host stringShape Name - The initial compute shape of the Cluster's ESXi hosts. ListSupportedHostShapes.
- Instance
Display stringName Prefix - A prefix used in the name of each ESXi host and Compute instance in the Cluster. If this isn't set, the Cluster's
displayName
is used as the prefix. - Is
Shielded boolInstance Enabled - Indicates whether shielded instance is enabled at the Cluster level.
- Network
Configurations []GetCluster Network Configuration - The network configurations used by Cluster, including OCIDs of the management subnet and VLANs.
- Sddc
Id string - The OCID of the SDDC that the Cluster belongs to.
- State string
- The current state of the Cluster.
- Time
Created string - The date and time the Cluster was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string - The date and time the Cluster was updated, in the format defined by RFC3339.
- Upgrade
Licenses []GetCluster Upgrade License - The vSphere licenses to use when upgrading the Cluster.
- Vmware
Software stringVersion - In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- Vsphere
Type string - vSphere Cluster types.
- Vsphere
Upgrade []GetObjects Cluster Vsphere Upgrade Object - The links to binary objects needed to upgrade vSphere.
- Workload
Network stringCidr - The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual
Esxi IntegerHosts Count - capacity
Reservation StringId - The OCID of the Capacity Reservation.
- cluster
Id String - compartment
Id String - The OCID of the compartment that contains the Cluster.
- compute
Availability StringDomain - The availability domain the ESXi hosts are running in. For Multi-AD Cluster, it is
multi-AD
. Example:Uocm:PHX-AD-1
,multi-AD
- datastores
List<Get
Cluster Datastore> - Datastores used for the Cluster.
- 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 descriptive name for the Cluster. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
- esxi
Hosts IntegerCount - The number of ESXi hosts in the Cluster.
- esxi
Software StringVersion - In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- 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"}
- id String
- The OCID of the Cluster.
- initial
Commitment String - The billing option selected during Cluster creation. ListSupportedCommitments.
- initial
Host DoubleOcpu Count - The initial OCPU count of the Cluster's ESXi hosts.
- initial
Host StringShape Name - The initial compute shape of the Cluster's ESXi hosts. ListSupportedHostShapes.
- instance
Display StringName Prefix - A prefix used in the name of each ESXi host and Compute instance in the Cluster. If this isn't set, the Cluster's
displayName
is used as the prefix. - is
Shielded BooleanInstance Enabled - Indicates whether shielded instance is enabled at the Cluster level.
- network
Configurations List<GetCluster Network Configuration> - The network configurations used by Cluster, including OCIDs of the management subnet and VLANs.
- sddc
Id String - The OCID of the SDDC that the Cluster belongs to.
- state String
- The current state of the Cluster.
- time
Created String - The date and time the Cluster was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String - The date and time the Cluster was updated, in the format defined by RFC3339.
- upgrade
Licenses List<GetCluster Upgrade License> - The vSphere licenses to use when upgrading the Cluster.
- vmware
Software StringVersion - In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- vsphere
Type String - vSphere Cluster types.
- vsphere
Upgrade List<GetObjects Cluster Vsphere Upgrade Object> - The links to binary objects needed to upgrade vSphere.
- workload
Network StringCidr - The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual
Esxi numberHosts Count - capacity
Reservation stringId - The OCID of the Capacity Reservation.
- cluster
Id string - compartment
Id string - The OCID of the compartment that contains the Cluster.
- compute
Availability stringDomain - The availability domain the ESXi hosts are running in. For Multi-AD Cluster, it is
multi-AD
. Example:Uocm:PHX-AD-1
,multi-AD
- datastores
Get
Cluster Datastore[] - Datastores used for the Cluster.
- {[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 descriptive name for the Cluster. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
- esxi
Hosts numberCount - The number of ESXi hosts in the Cluster.
- esxi
Software stringVersion - In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- {[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"}
- id string
- The OCID of the Cluster.
- initial
Commitment string - The billing option selected during Cluster creation. ListSupportedCommitments.
- initial
Host numberOcpu Count - The initial OCPU count of the Cluster's ESXi hosts.
- initial
Host stringShape Name - The initial compute shape of the Cluster's ESXi hosts. ListSupportedHostShapes.
- instance
Display stringName Prefix - A prefix used in the name of each ESXi host and Compute instance in the Cluster. If this isn't set, the Cluster's
displayName
is used as the prefix. - is
Shielded booleanInstance Enabled - Indicates whether shielded instance is enabled at the Cluster level.
- network
Configurations GetCluster Network Configuration[] - The network configurations used by Cluster, including OCIDs of the management subnet and VLANs.
- sddc
Id string - The OCID of the SDDC that the Cluster belongs to.
- state string
- The current state of the Cluster.
- time
Created string - The date and time the Cluster was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated string - The date and time the Cluster was updated, in the format defined by RFC3339.
- upgrade
Licenses GetCluster Upgrade License[] - The vSphere licenses to use when upgrading the Cluster.
- vmware
Software stringVersion - In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- vsphere
Type string - vSphere Cluster types.
- vsphere
Upgrade GetObjects Cluster Vsphere Upgrade Object[] - The links to binary objects needed to upgrade vSphere.
- workload
Network stringCidr - The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual_
esxi_ inthosts_ count - capacity_
reservation_ strid - The OCID of the Capacity Reservation.
- cluster_
id str - compartment_
id str - The OCID of the compartment that contains the Cluster.
- compute_
availability_ strdomain - The availability domain the ESXi hosts are running in. For Multi-AD Cluster, it is
multi-AD
. Example:Uocm:PHX-AD-1
,multi-AD
- datastores
Sequence[ocvp.
Get Cluster Datastore] - Datastores used for the Cluster.
- 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 descriptive name for the Cluster. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
- esxi_
hosts_ intcount - The number of ESXi hosts in the Cluster.
- esxi_
software_ strversion - In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- 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"}
- id str
- The OCID of the Cluster.
- initial_
commitment str - The billing option selected during Cluster creation. ListSupportedCommitments.
- initial_
host_ floatocpu_ count - The initial OCPU count of the Cluster's ESXi hosts.
- initial_
host_ strshape_ name - The initial compute shape of the Cluster's ESXi hosts. ListSupportedHostShapes.
- instance_
display_ strname_ prefix - A prefix used in the name of each ESXi host and Compute instance in the Cluster. If this isn't set, the Cluster's
displayName
is used as the prefix. - is_
shielded_ boolinstance_ enabled - Indicates whether shielded instance is enabled at the Cluster level.
- network_
configurations Sequence[ocvp.Get Cluster Network Configuration] - The network configurations used by Cluster, including OCIDs of the management subnet and VLANs.
- sddc_
id str - The OCID of the SDDC that the Cluster belongs to.
- state str
- The current state of the Cluster.
- time_
created str - The date and time the Cluster was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time_
updated str - The date and time the Cluster was updated, in the format defined by RFC3339.
- upgrade_
licenses Sequence[ocvp.Get Cluster Upgrade License] - The vSphere licenses to use when upgrading the Cluster.
- vmware_
software_ strversion - In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- vsphere_
type str - vSphere Cluster types.
- vsphere_
upgrade_ Sequence[ocvp.objects Get Cluster Vsphere Upgrade Object] - The links to binary objects needed to upgrade vSphere.
- workload_
network_ strcidr - The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual
Esxi NumberHosts Count - capacity
Reservation StringId - The OCID of the Capacity Reservation.
- cluster
Id String - compartment
Id String - The OCID of the compartment that contains the Cluster.
- compute
Availability StringDomain - The availability domain the ESXi hosts are running in. For Multi-AD Cluster, it is
multi-AD
. Example:Uocm:PHX-AD-1
,multi-AD
- datastores List<Property Map>
- Datastores used for the Cluster.
- 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 descriptive name for the Cluster. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
- esxi
Hosts NumberCount - The number of ESXi hosts in the Cluster.
- esxi
Software StringVersion - In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- 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"}
- id String
- The OCID of the Cluster.
- initial
Commitment String - The billing option selected during Cluster creation. ListSupportedCommitments.
- initial
Host NumberOcpu Count - The initial OCPU count of the Cluster's ESXi hosts.
- initial
Host StringShape Name - The initial compute shape of the Cluster's ESXi hosts. ListSupportedHostShapes.
- instance
Display StringName Prefix - A prefix used in the name of each ESXi host and Compute instance in the Cluster. If this isn't set, the Cluster's
displayName
is used as the prefix. - is
Shielded BooleanInstance Enabled - Indicates whether shielded instance is enabled at the Cluster level.
- network
Configurations List<Property Map> - The network configurations used by Cluster, including OCIDs of the management subnet and VLANs.
- sddc
Id String - The OCID of the SDDC that the Cluster belongs to.
- state String
- The current state of the Cluster.
- time
Created String - The date and time the Cluster was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String - The date and time the Cluster was updated, in the format defined by RFC3339.
- upgrade
Licenses List<Property Map> - The vSphere licenses to use when upgrading the Cluster.
- vmware
Software StringVersion - In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
- vsphere
Type String - vSphere Cluster types.
- vsphere
Upgrade List<Property Map>Objects - The links to binary objects needed to upgrade vSphere.
- workload
Network StringCidr - The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
Supporting Types
GetClusterDatastore
- Block
Volume List<string>Ids - A list of OCIDs of Block Storage Volumes.
- Capacity double
- Size of the Block Storage Volume in GB.
- Datastore
Type string - Type of the datastore.
- Block
Volume []stringIds - A list of OCIDs of Block Storage Volumes.
- Capacity float64
- Size of the Block Storage Volume in GB.
- Datastore
Type string - Type of the datastore.
- block
Volume List<String>Ids - A list of OCIDs of Block Storage Volumes.
- capacity Double
- Size of the Block Storage Volume in GB.
- datastore
Type String - Type of the datastore.
- block
Volume string[]Ids - A list of OCIDs of Block Storage Volumes.
- capacity number
- Size of the Block Storage Volume in GB.
- datastore
Type string - Type of the datastore.
- block_
volume_ Sequence[str]ids - A list of OCIDs of Block Storage Volumes.
- capacity float
- Size of the Block Storage Volume in GB.
- datastore_
type str - Type of the datastore.
- block
Volume List<String>Ids - A list of OCIDs of Block Storage Volumes.
- capacity Number
- Size of the Block Storage Volume in GB.
- datastore
Type String - Type of the datastore.
GetClusterNetworkConfiguration
- Hcx
Vlan stringId - The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster when HCX is enabled.
- Nsx
Edge stringUplink1vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- Nsx
Edge stringUplink2vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- Nsx
Edge stringVtep Vlan Id - The OCID of the VLAN used by the Cluster for the NSX Edge VTEP component of the VMware environment.
- Nsx
Vtep stringVlan Id - The OCID of the VLAN used by the Cluster for the NSX VTEP component of the VMware environment.
- Provisioning
Subnet stringId - The OCID of the management subnet used to provision the Cluster.
- Provisioning
Vlan stringId - The OCID of the VLAN used by the Cluster for the Provisioning component of the VMware environment.
- Replication
Vlan stringId - The OCID of the VLAN used by the Cluster for the vSphere Replication component of the VMware environment.
- Vmotion
Vlan stringId - The OCID of the VLAN used by the Cluster for the vMotion component of the VMware environment.
- Vsan
Vlan stringId - The OCID of the VLAN used by the Cluster for the vSAN component of the VMware environment.
- Vsphere
Vlan stringId - The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- Hcx
Vlan stringId - The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster when HCX is enabled.
- Nsx
Edge stringUplink1vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- Nsx
Edge stringUplink2vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- Nsx
Edge stringVtep Vlan Id - The OCID of the VLAN used by the Cluster for the NSX Edge VTEP component of the VMware environment.
- Nsx
Vtep stringVlan Id - The OCID of the VLAN used by the Cluster for the NSX VTEP component of the VMware environment.
- Provisioning
Subnet stringId - The OCID of the management subnet used to provision the Cluster.
- Provisioning
Vlan stringId - The OCID of the VLAN used by the Cluster for the Provisioning component of the VMware environment.
- Replication
Vlan stringId - The OCID of the VLAN used by the Cluster for the vSphere Replication component of the VMware environment.
- Vmotion
Vlan stringId - The OCID of the VLAN used by the Cluster for the vMotion component of the VMware environment.
- Vsan
Vlan stringId - The OCID of the VLAN used by the Cluster for the vSAN component of the VMware environment.
- Vsphere
Vlan stringId - The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- hcx
Vlan StringId - The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster when HCX is enabled.
- nsx
Edge StringUplink1vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx
Edge StringUplink2vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx
Edge StringVtep Vlan Id - The OCID of the VLAN used by the Cluster for the NSX Edge VTEP component of the VMware environment.
- nsx
Vtep StringVlan Id - The OCID of the VLAN used by the Cluster for the NSX VTEP component of the VMware environment.
- provisioning
Subnet StringId - The OCID of the management subnet used to provision the Cluster.
- provisioning
Vlan StringId - The OCID of the VLAN used by the Cluster for the Provisioning component of the VMware environment.
- replication
Vlan StringId - The OCID of the VLAN used by the Cluster for the vSphere Replication component of the VMware environment.
- vmotion
Vlan StringId - The OCID of the VLAN used by the Cluster for the vMotion component of the VMware environment.
- vsan
Vlan StringId - The OCID of the VLAN used by the Cluster for the vSAN component of the VMware environment.
- vsphere
Vlan StringId - The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- hcx
Vlan stringId - The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster when HCX is enabled.
- nsx
Edge stringUplink1vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx
Edge stringUplink2vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx
Edge stringVtep Vlan Id - The OCID of the VLAN used by the Cluster for the NSX Edge VTEP component of the VMware environment.
- nsx
Vtep stringVlan Id - The OCID of the VLAN used by the Cluster for the NSX VTEP component of the VMware environment.
- provisioning
Subnet stringId - The OCID of the management subnet used to provision the Cluster.
- provisioning
Vlan stringId - The OCID of the VLAN used by the Cluster for the Provisioning component of the VMware environment.
- replication
Vlan stringId - The OCID of the VLAN used by the Cluster for the vSphere Replication component of the VMware environment.
- vmotion
Vlan stringId - The OCID of the VLAN used by the Cluster for the vMotion component of the VMware environment.
- vsan
Vlan stringId - The OCID of the VLAN used by the Cluster for the vSAN component of the VMware environment.
- vsphere
Vlan stringId - The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- hcx_
vlan_ strid - The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster when HCX is enabled.
- nsx_
edge_ struplink1vlan_ id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx_
edge_ struplink2vlan_ id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx_
edge_ strvtep_ vlan_ id - The OCID of the VLAN used by the Cluster for the NSX Edge VTEP component of the VMware environment.
- nsx_
vtep_ strvlan_ id - The OCID of the VLAN used by the Cluster for the NSX VTEP component of the VMware environment.
- provisioning_
subnet_ strid - The OCID of the management subnet used to provision the Cluster.
- provisioning_
vlan_ strid - The OCID of the VLAN used by the Cluster for the Provisioning component of the VMware environment.
- replication_
vlan_ strid - The OCID of the VLAN used by the Cluster for the vSphere Replication component of the VMware environment.
- vmotion_
vlan_ strid - The OCID of the VLAN used by the Cluster for the vMotion component of the VMware environment.
- vsan_
vlan_ strid - The OCID of the VLAN used by the Cluster for the vSAN component of the VMware environment.
- vsphere_
vlan_ strid - The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- hcx
Vlan StringId - The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster when HCX is enabled.
- nsx
Edge StringUplink1vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx
Edge StringUplink2vlan Id - The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
- nsx
Edge StringVtep Vlan Id - The OCID of the VLAN used by the Cluster for the NSX Edge VTEP component of the VMware environment.
- nsx
Vtep StringVlan Id - The OCID of the VLAN used by the Cluster for the NSX VTEP component of the VMware environment.
- provisioning
Subnet StringId - The OCID of the management subnet used to provision the Cluster.
- provisioning
Vlan StringId - The OCID of the VLAN used by the Cluster for the Provisioning component of the VMware environment.
- replication
Vlan StringId - The OCID of the VLAN used by the Cluster for the vSphere Replication component of the VMware environment.
- vmotion
Vlan StringId - The OCID of the VLAN used by the Cluster for the vMotion component of the VMware environment.
- vsan
Vlan StringId - The OCID of the VLAN used by the Cluster for the vSAN component of the VMware environment.
- vsphere
Vlan StringId - The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster.
GetClusterUpgradeLicense
- License
Key string - vSphere license key value.
- License
Type string - vSphere license type.
- License
Key string - vSphere license key value.
- License
Type string - vSphere license type.
- license
Key String - vSphere license key value.
- license
Type String - vSphere license type.
- license
Key string - vSphere license key value.
- license
Type string - vSphere license type.
- license_
key str - vSphere license key value.
- license_
type str - vSphere license type.
- license
Key String - vSphere license key value.
- license
Type String - vSphere license type.
GetClusterVsphereUpgradeObject
- Download
Link string - Binary object download link.
- Link
Description string - Binary object description.
- Download
Link string - Binary object download link.
- Link
Description string - Binary object description.
- download
Link String - Binary object download link.
- link
Description String - Binary object description.
- download
Link string - Binary object download link.
- link
Description string - Binary object description.
- download_
link str - Binary object download link.
- link_
description str - Binary object description.
- download
Link String - Binary object download link.
- link
Description String - Binary object description.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.