import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Data Ingestion Jobs in Oracle Cloud Infrastructure Generative Ai Agent service. * * **ListDataIngestionJobs** * * Gets a list of data ingestion jobs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataIngestionJobs = oci.generativeai.getAgentDataIngestionJobs({ * compartmentId: compartmentId, * dataSourceId: testDataSource.id, * displayName: dataIngestionJobDisplayName, * state: dataIngestionJobState, * }); * ``` */ export declare function getAgentDataIngestionJobs(args?: GetAgentDataIngestionJobsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAgentDataIngestionJobs. */ export interface GetAgentDataIngestionJobsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the data source. */ dataSourceId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.GenerativeAi.GetAgentDataIngestionJobsFilter[]; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getAgentDataIngestionJobs. */ export interface GetAgentDataIngestionJobsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * The list of data_ingestion_job_collection. */ readonly dataIngestionJobCollections: outputs.GenerativeAi.GetAgentDataIngestionJobsDataIngestionJobCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent DataSource. */ readonly dataSourceId?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; readonly filters?: outputs.GenerativeAi.GetAgentDataIngestionJobsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the data ingestion job. */ readonly state?: string; } /** * This data source provides the list of Data Ingestion Jobs in Oracle Cloud Infrastructure Generative Ai Agent service. * * **ListDataIngestionJobs** * * Gets a list of data ingestion jobs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataIngestionJobs = oci.generativeai.getAgentDataIngestionJobs({ * compartmentId: compartmentId, * dataSourceId: testDataSource.id, * displayName: dataIngestionJobDisplayName, * state: dataIngestionJobState, * }); * ``` */ export declare function getAgentDataIngestionJobsOutput(args?: GetAgentDataIngestionJobsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAgentDataIngestionJobs. */ export interface GetAgentDataIngestionJobsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the data source. */ dataSourceId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getAgentDataIngestionJobs.d.ts.map