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 Supported Vmware Software Versions in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the versions of bundled VMware software supported by the Oracle Cloud * VMware Solution. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSupportedVmwareSoftwareVersions = oci.ocvp.getSupportedVmwareSoftwareVersions({ * compartmentId: compartmentId, * hostShapeName: testShape.name, * version: supportedVmwareSoftwareVersionVersion, * versionToUpgrade: supportedVmwareSoftwareVersionVersionToUpgrade, * }); * ``` */ export declare function getSupportedVmwareSoftwareVersions(args: GetSupportedVmwareSoftwareVersionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSupportedVmwareSoftwareVersions. */ export interface GetSupportedVmwareSoftwareVersionsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Ocvp.GetSupportedVmwareSoftwareVersionsFilter[]; /** * A filter to return only resources that match or support the given ESXi host shape. */ hostShapeName?: string; /** * A filter to return only resources that match the given VMware software version exactly. */ version?: string; /** * A filter to return only VMware software versions that the given VMware software version can be upgraded to. */ versionToUpgrade?: string; } /** * A collection of values returned by getSupportedVmwareSoftwareVersions. */ export interface GetSupportedVmwareSoftwareVersionsResult { readonly compartmentId: string; readonly filters?: outputs.Ocvp.GetSupportedVmwareSoftwareVersionsFilter[]; readonly hostShapeName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of the supported versions of bundled VMware software. */ readonly items: outputs.Ocvp.GetSupportedVmwareSoftwareVersionsItem[]; /** * A short, unique string that identifies the version of bundled software. */ readonly version?: string; readonly versionToUpgrade?: string; } /** * This data source provides the list of Supported Vmware Software Versions in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the versions of bundled VMware software supported by the Oracle Cloud * VMware Solution. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSupportedVmwareSoftwareVersions = oci.ocvp.getSupportedVmwareSoftwareVersions({ * compartmentId: compartmentId, * hostShapeName: testShape.name, * version: supportedVmwareSoftwareVersionVersion, * versionToUpgrade: supportedVmwareSoftwareVersionVersionToUpgrade, * }); * ``` */ export declare function getSupportedVmwareSoftwareVersionsOutput(args: GetSupportedVmwareSoftwareVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSupportedVmwareSoftwareVersions. */ export interface GetSupportedVmwareSoftwareVersionsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match or support the given ESXi host shape. */ hostShapeName?: pulumi.Input; /** * A filter to return only resources that match the given VMware software version exactly. */ version?: pulumi.Input; /** * A filter to return only VMware software versions that the given VMware software version can be upgraded to. */ versionToUpgrade?: pulumi.Input; } //# sourceMappingURL=getSupportedVmwareSoftwareVersions.d.ts.map