import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Model Type resource in Oracle Cloud Infrastructure Ai Document service. * * Gets model capabilities * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelType = oci.aidocument.getModelType({ * modelType: modelTypeModelType, * compartmentId: compartmentId, * modelSubType: modelTypeModelSubType, * }); * ``` */ export declare function getModelType(args: GetModelTypeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getModelType. */ export interface GetModelTypeArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: string; /** * The sub type based upon model selected. */ modelSubType?: string; /** * The type of the Document model. */ modelType: string; } /** * A collection of values returned by getModelType. */ export interface GetModelTypeResult { /** * Model information capabilities related to version */ readonly capabilities: string; readonly compartmentId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly modelSubType?: string; readonly modelType: string; /** * Model versions available for this model and submodel type */ readonly versions: string[]; } /** * This data source provides details about a specific Model Type resource in Oracle Cloud Infrastructure Ai Document service. * * Gets model capabilities * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testModelType = oci.aidocument.getModelType({ * modelType: modelTypeModelType, * compartmentId: compartmentId, * modelSubType: modelTypeModelSubType, * }); * ``` */ export declare function getModelTypeOutput(args: GetModelTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getModelType. */ export interface GetModelTypeOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * The sub type based upon model selected. */ modelSubType?: pulumi.Input; /** * The type of the Document model. */ modelType: pulumi.Input; } //# sourceMappingURL=getModelType.d.ts.map