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 Model Deployment Shapes in Oracle Cloud Infrastructure Datascience service. * * Lists the valid model deployment shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelDeploymentShapes = oci.datascience.getModelDeploymentShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getModelDeploymentShapes(args: GetModelDeploymentShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModelDeploymentShapes. */ export interface GetModelDeploymentShapesArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DataScience.GetModelDeploymentShapesFilter[]; } /** * A collection of values returned by getModelDeploymentShapes. */ export interface GetModelDeploymentShapesResult { readonly compartmentId: string; readonly filters?: outputs.DataScience.GetModelDeploymentShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of model_deployment_shapes. */ readonly modelDeploymentShapes: outputs.DataScience.GetModelDeploymentShapesModelDeploymentShape[]; } /** * This data source provides the list of Model Deployment Shapes in Oracle Cloud Infrastructure Datascience service. * * Lists the valid model deployment shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelDeploymentShapes = oci.datascience.getModelDeploymentShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getModelDeploymentShapesOutput(args: GetModelDeploymentShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModelDeploymentShapes. */ export interface GetModelDeploymentShapesOutputArgs { /** * 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=getModelDeploymentShapes.d.ts.map