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