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