import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getGenaiIndexingJobDataSources(args: GetGenaiIndexingJobDataSourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * 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; /** * A collection of arguments for invoking getGenaiIndexingJobDataSources. */ export interface GetGenaiIndexingJobDataSourcesOutputArgs { indexingJobUuid: pulumi.Input; }