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 Models in Oracle Cloud Infrastructure Ai Language service. * * Returns a list of models. * * ## Example Usage */ export declare function getModels(args: GetModelsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModels. */ export interface GetModelsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.AiLanguage.GetModelsFilter[]; /** * Unique identifier model OCID of a model that is immutable on creation */ id?: string; /** * The ID of the project for which to list the objects. */ projectId?: string; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: string; } /** * A collection of values returned by getModels. */ export interface GetModelsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the model's compartment. */ readonly compartmentId: string; /** * A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.AiLanguage.GetModelsFilter[]; /** * Unique identifier model OCID of a model that is immutable on creation */ readonly id?: string; /** * The list of model_collection. */ readonly modelCollections: outputs.AiLanguage.GetModelsModelCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the model. */ readonly projectId?: string; /** * The state of the model. */ readonly state?: string; } /** * This data source provides the list of Models in Oracle Cloud Infrastructure Ai Language service. * * Returns a list of models. * * ## Example Usage */ export declare function getModelsOutput(args: GetModelsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModels. */ export interface GetModelsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique identifier model OCID of a model that is immutable on creation */ id?: pulumi.Input; /** * The ID of the project for which to list the objects. */ projectId?: pulumi.Input; /** * Filter results by the specified lifecycle state. Must be a valid state for the resource type. */ state?: pulumi.Input; } //# sourceMappingURL=getModels.d.ts.map