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 Compute Target Shapes in Oracle Cloud Infrastructure Data Science service. * * Lists the valid compute target shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeTargetShapes = oci.datascience.getComputeTargetShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getComputeTargetShapes(args: GetComputeTargetShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeTargetShapes. */ export interface GetComputeTargetShapesArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DataScience.GetComputeTargetShapesFilter[]; } /** * A collection of values returned by getComputeTargetShapes. */ export interface GetComputeTargetShapesResult { readonly compartmentId: string; /** * The list of compute_target_shapes. */ readonly computeTargetShapes: outputs.DataScience.GetComputeTargetShapesComputeTargetShape[]; readonly filters?: outputs.DataScience.GetComputeTargetShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Target Shapes in Oracle Cloud Infrastructure Data Science service. * * Lists the valid compute target shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeTargetShapes = oci.datascience.getComputeTargetShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getComputeTargetShapesOutput(args: GetComputeTargetShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeTargetShapes. */ export interface GetComputeTargetShapesOutputArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getComputeTargetShapes.d.ts.map