UNPKG

@pulumi/digitalocean

Version:

A Pulumi package for creating and managing DigitalOcean cloud resources.

62 lines 2.62 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** @deprecated digitalocean.getGenaiKnowledgeBase has been deprecated in favor of digitalocean.getGradientaiKnowledgeBase */ export declare function getGenaiKnowledgeBase(args?: GetGenaiKnowledgeBaseArgs, opts?: pulumi.InvokeOptions): Promise<GetGenaiKnowledgeBaseResult>; /** * A collection of arguments for invoking getGenaiKnowledgeBase. */ export interface GetGenaiKnowledgeBaseArgs { addedToAgentAt?: string; databaseId?: string; embeddingModelUuid?: string; isPublic?: boolean; lastIndexingJobs?: inputs.GetGenaiKnowledgeBaseLastIndexingJob[]; name?: string; projectId?: string; region?: string; tags?: string[]; userId?: string; uuid?: string; } /** * A collection of values returned by getGenaiKnowledgeBase. */ export interface GetGenaiKnowledgeBaseResult { readonly addedToAgentAt?: string; readonly createdAt: string; readonly databaseId?: string; readonly embeddingModelUuid?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly isPublic?: boolean; readonly lastIndexingJobs?: outputs.GetGenaiKnowledgeBaseLastIndexingJob[]; readonly name?: string; readonly projectId?: string; readonly region?: string; readonly tags?: string[]; readonly updatedAt: string; readonly userId?: string; readonly uuid?: string; } /** @deprecated digitalocean.getGenaiKnowledgeBase has been deprecated in favor of digitalocean.getGradientaiKnowledgeBase */ export declare function getGenaiKnowledgeBaseOutput(args?: GetGenaiKnowledgeBaseOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGenaiKnowledgeBaseResult>; /** * A collection of arguments for invoking getGenaiKnowledgeBase. */ export interface GetGenaiKnowledgeBaseOutputArgs { addedToAgentAt?: pulumi.Input<string | undefined>; databaseId?: pulumi.Input<string | undefined>; embeddingModelUuid?: pulumi.Input<string | undefined>; isPublic?: pulumi.Input<boolean | undefined>; lastIndexingJobs?: pulumi.Input<pulumi.Input<inputs.GetGenaiKnowledgeBaseLastIndexingJobArgs>[] | undefined>; name?: pulumi.Input<string | undefined>; projectId?: pulumi.Input<string | undefined>; region?: pulumi.Input<string | undefined>; tags?: pulumi.Input<pulumi.Input<string>[] | undefined>; userId?: pulumi.Input<string | undefined>; uuid?: pulumi.Input<string | undefined>; } //# sourceMappingURL=getGenaiKnowledgeBase.d.ts.map