import * as pulumi from "@pulumi/pulumi";
export declare class GradientaiFunction extends pulumi.CustomResource {
    /**
     * Get an existing GradientaiFunction resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GradientaiFunctionState, opts?: pulumi.CustomResourceOptions): GradientaiFunction;
    /**
     * Returns true if the given object is an instance of GradientaiFunction.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is GradientaiFunction;
    /**
     * The name of the GradientAI resource.
     */
    readonly agentId: pulumi.Output<string>;
    /**
     * The region where the GradientAI resource will be created.
     */
    readonly description: pulumi.Output<string>;
    /**
     * The model to use for the GradientAI resource.
     */
    readonly faasName: pulumi.Output<string | undefined>;
    /**
     * The current status of the GradientAI resource.
     */
    readonly faasNamespace: pulumi.Output<string>;
    /**
     * The creation timestamp of the GradientAI resource.
     */
    readonly functionName: pulumi.Output<string>;
    /**
     * The unique identifier of the GradientAI function.
     */
    readonly functionUuid: pulumi.Output<string>;
    /**
     * The input schema of the GradientAI resource.
     */
    readonly inputSchema: pulumi.Output<string>;
    /**
     * The output schema of the GradientAI resource.
     */
    readonly outputSchema: pulumi.Output<string | undefined>;
    /**
     * Create a GradientaiFunction resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: GradientaiFunctionArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering GradientaiFunction resources.
 */
export interface GradientaiFunctionState {
    /**
     * The name of the GradientAI resource.
     */
    agentId?: pulumi.Input<string | undefined>;
    /**
     * The region where the GradientAI resource will be created.
     */
    description?: pulumi.Input<string | undefined>;
    /**
     * The model to use for the GradientAI resource.
     */
    faasName?: pulumi.Input<string | undefined>;
    /**
     * The current status of the GradientAI resource.
     */
    faasNamespace?: pulumi.Input<string | undefined>;
    /**
     * The creation timestamp of the GradientAI resource.
     */
    functionName?: pulumi.Input<string | undefined>;
    /**
     * The unique identifier of the GradientAI function.
     */
    functionUuid?: pulumi.Input<string | undefined>;
    /**
     * The input schema of the GradientAI resource.
     */
    inputSchema?: pulumi.Input<string | undefined>;
    /**
     * The output schema of the GradientAI resource.
     */
    outputSchema?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a GradientaiFunction resource.
 */
export interface GradientaiFunctionArgs {
    /**
     * The name of the GradientAI resource.
     */
    agentId: pulumi.Input<string>;
    /**
     * The region where the GradientAI resource will be created.
     */
    description: pulumi.Input<string>;
    /**
     * The model to use for the GradientAI resource.
     */
    faasName?: pulumi.Input<string | undefined>;
    /**
     * The current status of the GradientAI resource.
     */
    faasNamespace: pulumi.Input<string>;
    /**
     * The creation timestamp of the GradientAI resource.
     */
    functionName: pulumi.Input<string>;
    /**
     * The input schema of the GradientAI resource.
     */
    inputSchema: pulumi.Input<string>;
    /**
     * The output schema of the GradientAI resource.
     */
    outputSchema?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=gradientaiFunction.d.ts.map