oci.GenerativeAi.AgentDataIngestionJob
Explore with Pulumi AI
This resource provides the Data Ingestion Job resource in Oracle Cloud Infrastructure Generative Ai Agent service.
CreateDataIngestionJob
Creates a data ingestion job.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDataIngestionJob = new oci.generativeai.AgentDataIngestionJob("test_data_ingestion_job", {
    compartmentId: compartmentId,
    dataSourceId: testDataSource.id,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: dataIngestionJobDescription,
    displayName: dataIngestionJobDisplayName,
    freeformTags: {
        Department: "Finance",
    },
});
import pulumi
import pulumi_oci as oci
test_data_ingestion_job = oci.generative_ai.AgentDataIngestionJob("test_data_ingestion_job",
    compartment_id=compartment_id,
    data_source_id=test_data_source["id"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=data_ingestion_job_description,
    display_name=data_ingestion_job_display_name,
    freeform_tags={
        "Department": "Finance",
    })
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/generativeai"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := generativeai.NewAgentDataIngestionJob(ctx, "test_data_ingestion_job", &generativeai.AgentDataIngestionJobArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DataSourceId:  pulumi.Any(testDataSource.Id),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(dataIngestionJobDescription),
			DisplayName: pulumi.Any(dataIngestionJobDisplayName),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testDataIngestionJob = new Oci.GenerativeAi.AgentDataIngestionJob("test_data_ingestion_job", new()
    {
        CompartmentId = compartmentId,
        DataSourceId = testDataSource.Id,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = dataIngestionJobDescription,
        DisplayName = dataIngestionJobDisplayName,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GenerativeAi.AgentDataIngestionJob;
import com.pulumi.oci.GenerativeAi.AgentDataIngestionJobArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testDataIngestionJob = new AgentDataIngestionJob("testDataIngestionJob", AgentDataIngestionJobArgs.builder()
            .compartmentId(compartmentId)
            .dataSourceId(testDataSource.id())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(dataIngestionJobDescription)
            .displayName(dataIngestionJobDisplayName)
            .freeformTags(Map.of("Department", "Finance"))
            .build());
    }
}
resources:
  testDataIngestionJob:
    type: oci:GenerativeAi:AgentDataIngestionJob
    name: test_data_ingestion_job
    properties:
      compartmentId: ${compartmentId}
      dataSourceId: ${testDataSource.id}
      definedTags:
        Operations.CostCenter: '42'
      description: ${dataIngestionJobDescription}
      displayName: ${dataIngestionJobDisplayName}
      freeformTags:
        Department: Finance
Create AgentDataIngestionJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AgentDataIngestionJob(name: string, args: AgentDataIngestionJobArgs, opts?: CustomResourceOptions);@overload
def AgentDataIngestionJob(resource_name: str,
                          args: AgentDataIngestionJobArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def AgentDataIngestionJob(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          compartment_id: Optional[str] = None,
                          data_source_id: Optional[str] = None,
                          defined_tags: Optional[Mapping[str, str]] = None,
                          description: Optional[str] = None,
                          display_name: Optional[str] = None,
                          freeform_tags: Optional[Mapping[str, str]] = None)func NewAgentDataIngestionJob(ctx *Context, name string, args AgentDataIngestionJobArgs, opts ...ResourceOption) (*AgentDataIngestionJob, error)public AgentDataIngestionJob(string name, AgentDataIngestionJobArgs args, CustomResourceOptions? opts = null)
public AgentDataIngestionJob(String name, AgentDataIngestionJobArgs args)
public AgentDataIngestionJob(String name, AgentDataIngestionJobArgs args, CustomResourceOptions options)
type: oci:GenerativeAi:AgentDataIngestionJob
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AgentDataIngestionJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AgentDataIngestionJobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AgentDataIngestionJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AgentDataIngestionJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AgentDataIngestionJobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var agentDataIngestionJobResource = new Oci.GenerativeAi.AgentDataIngestionJob("agentDataIngestionJobResource", new()
{
    CompartmentId = "string",
    DataSourceId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
example, err := generativeai.NewAgentDataIngestionJob(ctx, "agentDataIngestionJobResource", &generativeai.AgentDataIngestionJobArgs{
	CompartmentId: pulumi.String("string"),
	DataSourceId:  pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var agentDataIngestionJobResource = new AgentDataIngestionJob("agentDataIngestionJobResource", AgentDataIngestionJobArgs.builder()
    .compartmentId("string")
    .dataSourceId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .build());
agent_data_ingestion_job_resource = oci.generative_ai.AgentDataIngestionJob("agentDataIngestionJobResource",
    compartment_id="string",
    data_source_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    })
const agentDataIngestionJobResource = new oci.generativeai.AgentDataIngestionJob("agentDataIngestionJobResource", {
    compartmentId: "string",
    dataSourceId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
});
type: oci:GenerativeAi:AgentDataIngestionJob
properties:
    compartmentId: string
    dataSourceId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
AgentDataIngestionJob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AgentDataIngestionJob resource accepts the following input properties:
- CompartmentId string
- The OCID of the compartment to create the data ingestion job in.
- DataSource stringId 
- The OCID of the parent DataSource.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- A user-friendly description of the data ingestion job.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CompartmentId string
- The OCID of the compartment to create the data ingestion job in.
- DataSource stringId 
- The OCID of the parent DataSource.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- A user-friendly description of the data ingestion job.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentId String
- The OCID of the compartment to create the data ingestion job in.
- dataSource StringId 
- The OCID of the parent DataSource.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- A user-friendly description of the data ingestion job.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentId string
- The OCID of the compartment to create the data ingestion job in.
- dataSource stringId 
- The OCID of the parent DataSource.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- A user-friendly description of the data ingestion job.
- displayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartment_id str
- The OCID of the compartment to create the data ingestion job in.
- data_source_ strid 
- The OCID of the parent DataSource.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- A user-friendly description of the data ingestion job.
- display_name str
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentId String
- The OCID of the compartment to create the data ingestion job in.
- dataSource StringId 
- The OCID of the parent DataSource.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- A user-friendly description of the data ingestion job.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Outputs
All input properties are implicitly available as output properties. Additionally, the AgentDataIngestionJob resource produces the following output properties:
- DataIngestion List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> 
- DataIngestionJobStatistics
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- State string
- The current state of the data ingestion job.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- TimeUpdated string
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- DataIngestion []AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic 
- DataIngestionJobStatistics
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- State string
- The current state of the data ingestion job.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- TimeUpdated string
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- dataIngestion List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> 
- DataIngestionJobStatistics
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state String
- The current state of the data ingestion job.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- timeUpdated String
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- dataIngestion AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic[] 
- DataIngestionJobStatistics
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails string
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state string
- The current state of the data ingestion job.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- timeUpdated string
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- data_ingestion_ Sequence[Agentjob_ statistics Data Ingestion Job Data Ingestion Job Statistic] 
- DataIngestionJobStatistics
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_details str
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state str
- The current state of the data ingestion job.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- time_updated str
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- dataIngestion List<Property Map>Job Statistics 
- DataIngestionJobStatistics
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state String
- The current state of the data ingestion job.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- timeUpdated String
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
Look up Existing AgentDataIngestionJob Resource
Get an existing AgentDataIngestionJob resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AgentDataIngestionJobState, opts?: CustomResourceOptions): AgentDataIngestionJob@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        data_ingestion_job_statistics: Optional[Sequence[AgentDataIngestionJobDataIngestionJobStatisticArgs]] = None,
        data_source_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> AgentDataIngestionJobfunc GetAgentDataIngestionJob(ctx *Context, name string, id IDInput, state *AgentDataIngestionJobState, opts ...ResourceOption) (*AgentDataIngestionJob, error)public static AgentDataIngestionJob Get(string name, Input<string> id, AgentDataIngestionJobState? state, CustomResourceOptions? opts = null)public static AgentDataIngestionJob get(String name, Output<String> id, AgentDataIngestionJobState state, CustomResourceOptions options)resources:  _:    type: oci:GenerativeAi:AgentDataIngestionJob    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- The OCID of the compartment to create the data ingestion job in.
- DataIngestion List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> 
- DataIngestionJobStatistics
- DataSource stringId 
- The OCID of the parent DataSource.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- A user-friendly description of the data ingestion job.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- LifecycleDetails string
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- State string
- The current state of the data ingestion job.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- TimeUpdated string
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- CompartmentId string
- The OCID of the compartment to create the data ingestion job in.
- DataIngestion []AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic Args 
- DataIngestionJobStatistics
- DataSource stringId 
- The OCID of the parent DataSource.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- A user-friendly description of the data ingestion job.
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- LifecycleDetails string
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- State string
- The current state of the data ingestion job.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- TimeUpdated string
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- compartmentId String
- The OCID of the compartment to create the data ingestion job in.
- dataIngestion List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> 
- DataIngestionJobStatistics
- dataSource StringId 
- The OCID of the parent DataSource.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- A user-friendly description of the data ingestion job.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- lifecycleDetails String
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state String
- The current state of the data ingestion job.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- timeUpdated String
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- compartmentId string
- The OCID of the compartment to create the data ingestion job in.
- dataIngestion AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic[] 
- DataIngestionJobStatistics
- dataSource stringId 
- The OCID of the parent DataSource.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- A user-friendly description of the data ingestion job.
- displayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- lifecycleDetails string
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state string
- The current state of the data ingestion job.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- timeUpdated string
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- compartment_id str
- The OCID of the compartment to create the data ingestion job in.
- data_ingestion_ Sequence[Agentjob_ statistics Data Ingestion Job Data Ingestion Job Statistic Args] 
- DataIngestionJobStatistics
- data_source_ strid 
- The OCID of the parent DataSource.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- A user-friendly description of the data ingestion job.
- display_name str
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- lifecycle_details str
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state str
- The current state of the data ingestion job.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- time_updated str
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- compartmentId String
- The OCID of the compartment to create the data ingestion job in.
- dataIngestion List<Property Map>Job Statistics 
- DataIngestionJobStatistics
- dataSource StringId 
- The OCID of the parent DataSource.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- A user-friendly description of the data ingestion job.
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: - {"Department": "Finance"}- ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- lifecycleDetails String
- A message that describes the current state of the data ingestion job in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state String
- The current state of the data ingestion job.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the data ingestion job was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
- timeUpdated String
- The date and time the data ingestion job was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
Supporting Types
AgentDataIngestionJobDataIngestionJobStatistic, AgentDataIngestionJobDataIngestionJobStatisticArgs                
- DurationIn intSeconds 
- The duration of this ingestion job.
- NumberOf intFailed Files 
- The number of files that have failed during the ingestion.
- NumberOf intIngested Files 
- The number of files that have been successfully ingested during the ingestion.
- DurationIn intSeconds 
- The duration of this ingestion job.
- NumberOf intFailed Files 
- The number of files that have failed during the ingestion.
- NumberOf intIngested Files 
- The number of files that have been successfully ingested during the ingestion.
- durationIn IntegerSeconds 
- The duration of this ingestion job.
- numberOf IntegerFailed Files 
- The number of files that have failed during the ingestion.
- numberOf IntegerIngested Files 
- The number of files that have been successfully ingested during the ingestion.
- durationIn numberSeconds 
- The duration of this ingestion job.
- numberOf numberFailed Files 
- The number of files that have failed during the ingestion.
- numberOf numberIngested Files 
- The number of files that have been successfully ingested during the ingestion.
- duration_in_ intseconds 
- The duration of this ingestion job.
- number_of_ intfailed_ files 
- The number of files that have failed during the ingestion.
- number_of_ intingested_ files 
- The number of files that have been successfully ingested during the ingestion.
- durationIn NumberSeconds 
- The duration of this ingestion job.
- numberOf NumberFailed Files 
- The number of files that have failed during the ingestion.
- numberOf NumberIngested Files 
- The number of files that have been successfully ingested during the ingestion.
Import
DataIngestionJobs can be imported using the id, e.g.
$ pulumi import oci:GenerativeAi/agentDataIngestionJob:AgentDataIngestionJob test_data_ingestion_job "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.