import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Imported Model resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about an imported model. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testImportedModel = oci.generativeai.getImportedModel({ * importedModelId: testImportedModelOciGenerativeAiImportedModel.id, * }); * ``` */ export declare function getImportedModel(args: GetImportedModelArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getImportedModel. */ export interface GetImportedModelArgs { /** * The importedModel OCID */ importedModelId: string; } /** * A collection of values returned by getImportedModel. */ export interface GetImportedModelResult { readonly capabilities: string[]; readonly compartmentId: string; readonly dataSources: outputs.GenerativeAi.GetImportedModelDataSource[]; readonly definedTags: { [key: string]: string; }; readonly description: string; readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; readonly id: string; readonly importedModelId: string; /** * Additional information about the current state of the imported model, providing more detailed and actionable context. */ readonly lifecycleDetails: string; readonly previousState: string; readonly state: string; readonly systemTags: { [key: string]: string; }; /** * The date and time that the imported model was created in the format of an RFC3339 datetime string. */ readonly timeCreated: string; readonly timeUpdated: string; readonly vendor: string; readonly version: string; } /** * This data source provides details about a specific Imported Model resource in Oracle Cloud Infrastructure Generative AI service. * * Gets information about an imported model. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testImportedModel = oci.generativeai.getImportedModel({ * importedModelId: testImportedModelOciGenerativeAiImportedModel.id, * }); * ``` */ export declare function getImportedModelOutput(args: GetImportedModelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getImportedModel. */ export interface GetImportedModelOutputArgs { /** * The importedModel OCID */ importedModelId: pulumi.Input; } //# sourceMappingURL=getImportedModel.d.ts.map