import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Sddcs in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the SDDCs in the specified compartment. The list can be * filtered by display name or availability domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSddcs = oci.ocvp.getSddcs({ * compartmentId: compartmentId, * computeAvailabilityDomain: sddcComputeAvailabilityDomain, * displayName: sddcDisplayName, * state: sddcState, * }); * ``` */ export declare function getSddcs(args: GetSddcsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSddcs. */ export interface GetSddcsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * The name of the availability domain that the Compute instances are running in. Example: `Uocm:PHX-AD-1` */ computeAvailabilityDomain?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Ocvp.GetSddcsFilter[]; /** * The lifecycle state of the resource. */ state?: string; } /** * A collection of values returned by getSddcs. */ export interface GetSddcsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the SDDC. */ readonly compartmentId: string; /** * The availability domain to create the Cluster's ESXi hosts in. For multi-AD Cluster deployment, set to `multi-AD`. */ readonly computeAvailabilityDomain?: string; /** * A descriptive name for the Cluster. Cluster name requirements are 1-22 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Ocvp.GetSddcsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of sddc_collection. */ readonly sddcCollections: outputs.Ocvp.GetSddcsSddcCollection[]; /** * The current state of the SDDC. */ readonly state?: string; } /** * This data source provides the list of Sddcs in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the SDDCs in the specified compartment. The list can be * filtered by display name or availability domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSddcs = oci.ocvp.getSddcs({ * compartmentId: compartmentId, * computeAvailabilityDomain: sddcComputeAvailabilityDomain, * displayName: sddcDisplayName, * state: sddcState, * }); * ``` */ export declare function getSddcsOutput(args: GetSddcsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSddcs. */ export interface GetSddcsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The name of the availability domain that the Compute instances are running in. Example: `Uocm:PHX-AD-1` */ computeAvailabilityDomain?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The lifecycle state of the resource. */ state?: pulumi.Input; } //# sourceMappingURL=getSddcs.d.ts.map