import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class GradientaiKnowledgeBase extends pulumi.CustomResource {
    /**
     * Get an existing GradientaiKnowledgeBase 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?: GradientaiKnowledgeBaseState, opts?: pulumi.CustomResourceOptions): GradientaiKnowledgeBase;
    /**
     * Returns true if the given object is an instance of GradientaiKnowledgeBase.  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 GradientaiKnowledgeBase;
    /**
     * The time when the knowledge base was added to the agent.
     */
    readonly addedToAgentAt: pulumi.Output<string | undefined>;
    /**
     * The time when the knowledge base was created.
     */
    readonly createdAt: pulumi.Output<string>;
    /**
     * The unique identifier of the DigitalOcean OpenSearch database this knowledge base will use
     */
    readonly databaseId: pulumi.Output<string | undefined>;
    /**
     * Data sources for the knowledge base
     */
    readonly datasources: pulumi.Output<outputs.GradientaiKnowledgeBaseDataSource[]>;
    /**
     * The unique identifier of the embedding model
     */
    readonly embeddingModelUuid: pulumi.Output<string>;
    /**
     * Indicates whether the knowledge base is public or private.
     */
    readonly isPublic: pulumi.Output<boolean | undefined>;
    /**
     * The last indexing job for the knowledge base.
     */
    readonly lastIndexingJobs: pulumi.Output<outputs.GradientaiKnowledgeBaseLastIndexingJob[] | undefined>;
    /**
     * The name of the knowledge base.
     */
    readonly name: pulumi.Output<string>;
    /**
     * The unique identifier of the project to which the knowledge base belongs.
     */
    readonly projectId: pulumi.Output<string>;
    readonly region: pulumi.Output<string>;
    readonly tags: pulumi.Output<string[] | undefined>;
    /**
     * The unique identifier of the VPC to which the knowledge base belongs.
     */
    readonly vpcUuid: pulumi.Output<string | undefined>;
    /**
     * Create a GradientaiKnowledgeBase 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: GradientaiKnowledgeBaseArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering GradientaiKnowledgeBase resources.
 */
export interface GradientaiKnowledgeBaseState {
    /**
     * The time when the knowledge base was added to the agent.
     */
    addedToAgentAt?: pulumi.Input<string | undefined>;
    /**
     * The time when the knowledge base was created.
     */
    createdAt?: pulumi.Input<string | undefined>;
    /**
     * The unique identifier of the DigitalOcean OpenSearch database this knowledge base will use
     */
    databaseId?: pulumi.Input<string | undefined>;
    /**
     * Data sources for the knowledge base
     */
    datasources?: pulumi.Input<pulumi.Input<inputs.GradientaiKnowledgeBaseDataSource>[] | undefined>;
    /**
     * The unique identifier of the embedding model
     */
    embeddingModelUuid?: pulumi.Input<string | undefined>;
    /**
     * Indicates whether the knowledge base is public or private.
     */
    isPublic?: pulumi.Input<boolean | undefined>;
    /**
     * The last indexing job for the knowledge base.
     */
    lastIndexingJobs?: pulumi.Input<pulumi.Input<inputs.GradientaiKnowledgeBaseLastIndexingJob>[] | undefined>;
    /**
     * The name of the knowledge base.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * The unique identifier of the project to which the knowledge base belongs.
     */
    projectId?: pulumi.Input<string | undefined>;
    region?: pulumi.Input<string | undefined>;
    tags?: pulumi.Input<pulumi.Input<string>[] | undefined>;
    /**
     * The unique identifier of the VPC to which the knowledge base belongs.
     */
    vpcUuid?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a GradientaiKnowledgeBase resource.
 */
export interface GradientaiKnowledgeBaseArgs {
    /**
     * The time when the knowledge base was added to the agent.
     */
    addedToAgentAt?: pulumi.Input<string | undefined>;
    /**
     * The unique identifier of the DigitalOcean OpenSearch database this knowledge base will use
     */
    databaseId?: pulumi.Input<string | undefined>;
    /**
     * Data sources for the knowledge base
     */
    datasources: pulumi.Input<pulumi.Input<inputs.GradientaiKnowledgeBaseDataSource>[]>;
    /**
     * The unique identifier of the embedding model
     */
    embeddingModelUuid: pulumi.Input<string>;
    /**
     * Indicates whether the knowledge base is public or private.
     */
    isPublic?: pulumi.Input<boolean | undefined>;
    /**
     * The last indexing job for the knowledge base.
     */
    lastIndexingJobs?: pulumi.Input<pulumi.Input<inputs.GradientaiKnowledgeBaseLastIndexingJob>[] | undefined>;
    /**
     * The name of the knowledge base.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * The unique identifier of the project to which the knowledge base belongs.
     */
    projectId: pulumi.Input<string>;
    region: pulumi.Input<string>;
    tags?: pulumi.Input<pulumi.Input<string>[] | undefined>;
    /**
     * The unique identifier of the VPC to which the knowledge base belongs.
     */
    vpcUuid?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=gradientaiKnowledgeBase.d.ts.map