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 Skus in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * > **WARNING:** This data source is deprecated and will be removed, please use "oci.Ocvp.getSupportedCommitments" instead. * * Lists supported SKUs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSupportedSkus = oci.ocvp.getSupportedSkus({ * compartmentId: compartmentId, * hostShapeName: testShape.name, * }); * ``` */ export declare function getSupportedSkus(args: GetSupportedSkusArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSupportedSkus. */ export interface GetSupportedSkusArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Ocvp.GetSupportedSkusFilter[]; /** * A filter to return only resources that match or support the given ESXi host shape. */ hostShapeName?: string; } /** * A collection of values returned by getSupportedSkus. */ export interface GetSupportedSkusResult { readonly compartmentId: string; readonly filters?: outputs.Ocvp.GetSupportedSkusFilter[]; readonly hostShapeName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of the supported SKUs. */ readonly items: outputs.Ocvp.GetSupportedSkusItem[]; } /** * This data source provides the list of Supported Skus in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * > **WARNING:** This data source is deprecated and will be removed, please use "oci.Ocvp.getSupportedCommitments" instead. * * Lists supported SKUs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSupportedSkus = oci.ocvp.getSupportedSkus({ * compartmentId: compartmentId, * hostShapeName: testShape.name, * }); * ``` */ export declare function getSupportedSkusOutput(args: GetSupportedSkusOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSupportedSkus. */ export interface GetSupportedSkusOutputArgs { /** * 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; } //# sourceMappingURL=getSupportedSkus.d.ts.map