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 Job Shapes in Oracle Cloud Infrastructure Data Science service. * * List job shapes available in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJobShapes = oci.datascience.getJobShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getJobShapes(args: GetJobShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getJobShapes. */ export interface GetJobShapesArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DataScience.GetJobShapesFilter[]; } /** * A collection of values returned by getJobShapes. */ export interface GetJobShapesResult { readonly compartmentId: string; readonly filters?: outputs.DataScience.GetJobShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of job_shapes. */ readonly jobShapes: outputs.DataScience.GetJobShapesJobShape[]; } /** * This data source provides the list of Job Shapes in Oracle Cloud Infrastructure Data Science service. * * List job shapes available in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJobShapes = oci.datascience.getJobShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getJobShapesOutput(args: GetJobShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getJobShapes. */ export interface GetJobShapesOutputArgs { /** * 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=getJobShapes.d.ts.map