UNPKG

@pulumi/digitalocean

Version:

A Pulumi package for creating and managing DigitalOcean cloud resources.

28 lines (27 loc) 1.18 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getGenaiIndexingJobDataSources(args: GetGenaiIndexingJobDataSourcesArgs, opts?: pulumi.InvokeOptions): Promise<GetGenaiIndexingJobDataSourcesResult>; /** * A collection of arguments for invoking getGenaiIndexingJobDataSources. */ export interface GetGenaiIndexingJobDataSourcesArgs { indexingJobUuid: string; } /** * A collection of values returned by getGenaiIndexingJobDataSources. */ export interface GetGenaiIndexingJobDataSourcesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly indexedDataSources: outputs.GetGenaiIndexingJobDataSourcesIndexedDataSource[]; readonly indexingJobUuid: string; } export declare function getGenaiIndexingJobDataSourcesOutput(args: GetGenaiIndexingJobDataSourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGenaiIndexingJobDataSourcesResult>; /** * A collection of arguments for invoking getGenaiIndexingJobDataSources. */ export interface GetGenaiIndexingJobDataSourcesOutputArgs { indexingJobUuid: pulumi.Input<string>; }