import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * 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 * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCluster = oci.ocvp.getCluster({ * clusterId: testClusterOciOcvpCluster.id, * }); * ``` */ export declare function getCluster(args: GetClusterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCluster. */ export interface GetClusterArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster. */ clusterId: string; } /** * A collection of values returned by getCluster. */ export interface GetClusterResult { readonly actualEsxiHostsCount: number; readonly attachDatastoreClusterIds: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Capacity Reservation. */ readonly capacityReservationId: string; /** * The BYOL allocations used for VMware Cluster provisioning. */ readonly clusterByolAllocationDetails: outputs.Ocvp.GetClusterClusterByolAllocationDetail[]; readonly clusterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Cluster. */ readonly compartmentId: string; /** * The availability domain the ESXi hosts are running in. For Multi-AD Cluster, it is `multi-AD`. Example: `Uocm:PHX-AD-1`, `multi-AD` */ readonly computeAvailabilityDomain: string; /** * A list of datastore clusters. */ readonly datastoreClusterIds: string[]; /** * Datastores used for the Cluster. */ readonly datastores: outputs.Ocvp.GetClusterDatastore[]; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; readonly detachDatastoreClusterIds: 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. */ readonly displayName: string; /** * The number of ESXi hosts in the Cluster. */ readonly esxiHostsCount: number; /** * In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see [ListSupportedVmwareSoftwareVersions](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20230701/SupportedVmwareSoftwareVersionSummary/ListSupportedVmwareSoftwareVersions)). */ readonly esxiSoftwareVersion: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Cluster. */ readonly id: string; /** * The billing option selected during Cluster creation. [ListSupportedCommitments](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedCommitmentSummary/ListSupportedCommitments). */ readonly initialCommitment: string; /** * The initial OCPU count of the Cluster's ESXi hosts. */ readonly initialHostOcpuCount: number; /** * The initial compute shape of the Cluster's ESXi hosts. [ListSupportedHostShapes](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedHostShapes/ListSupportedHostShapes). */ readonly initialHostShapeName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the initial VMware BYOL Allocation used to deploy VMware Cloud Foundation. */ readonly initialVcfByolAllocationId: string; /** * 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. */ readonly instanceDisplayNamePrefix: string; /** * Indicates whether shielded instance is enabled at the Cluster level. */ readonly isShieldedInstanceEnabled: boolean; /** * The network configurations used by Cluster, including [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management subnet and VLANs. */ readonly networkConfigurations: outputs.Ocvp.GetClusterNetworkConfiguration[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC that the Cluster belongs to. */ readonly sddcId: string; /** * The current state of the Cluster. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{orcl-cloud: {free-tier-retain: true}}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the Cluster was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the Cluster was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeUpdated: string; /** * The vSphere licenses to use when upgrading the Cluster. */ readonly upgradeLicenses: outputs.Ocvp.GetClusterUpgradeLicense[]; /** * In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see [ListSupportedVmwareSoftwareVersions](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedVmwareSoftwareVersionSummary/ListSupportedVmwareSoftwareVersions)). */ readonly vmwareSoftwareVersion: string; /** * vSphere Cluster types. */ readonly vsphereType: string; /** * The links to binary objects needed to upgrade vSphere. */ readonly vsphereUpgradeObjects: outputs.Ocvp.GetClusterVsphereUpgradeObject[]; /** * The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads. */ readonly workloadNetworkCidr: string; } /** * 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 * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCluster = oci.ocvp.getCluster({ * clusterId: testClusterOciOcvpCluster.id, * }); * ``` */ export declare function getClusterOutput(args: GetClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCluster. */ export interface GetClusterOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster. */ clusterId: pulumi.Input; } //# sourceMappingURL=getCluster.d.ts.map