1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. GenerativeAi
  5. AgentDataIngestionJob
Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 by Pulumi

oci.GenerativeAi.AgentDataIngestionJob

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 by Pulumi

    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.
    DataSourceId string
    The OCID of the parent DataSource.
    DefinedTags 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.
    FreeformTags 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.
    DataSourceId string
    The OCID of the parent DataSource.
    DefinedTags 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.
    FreeformTags 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.
    dataSourceId String
    The OCID of the parent DataSource.
    definedTags 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.
    freeformTags 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.
    dataSourceId string
    The OCID of the parent DataSource.
    definedTags {[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.
    freeformTags {[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_id str
    The OCID of the parent DataSource.
    defined_tags 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.
    freeform_tags 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.
    dataSourceId String
    The OCID of the parent DataSource.
    definedTags 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.
    freeformTags 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:

    DataIngestionJobStatistics List<AgentDataIngestionJobDataIngestionJobStatistic>
    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.
    SystemTags 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
    DataIngestionJobStatistics []AgentDataIngestionJobDataIngestionJobStatistic
    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.
    SystemTags 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
    dataIngestionJobStatistics List<AgentDataIngestionJobDataIngestionJobStatistic>
    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.
    systemTags 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
    dataIngestionJobStatistics AgentDataIngestionJobDataIngestionJobStatistic[]
    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.
    systemTags {[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_job_statistics Sequence[generativeai.AgentDataIngestionJobDataIngestionJobStatistic]
    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.
    system_tags 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
    dataIngestionJobStatistics List<Property Map>
    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.
    systemTags 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[_generativeai.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) -> AgentDataIngestionJob
    func 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)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    CompartmentId string
    The OCID of the compartment to create the data ingestion job in.
    DataIngestionJobStatistics List<AgentDataIngestionJobDataIngestionJobStatistic>
    DataIngestionJobStatistics
    DataSourceId string
    The OCID of the parent DataSource.
    DefinedTags 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.
    FreeformTags 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.
    SystemTags 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.
    DataIngestionJobStatistics []AgentDataIngestionJobDataIngestionJobStatisticArgs
    DataIngestionJobStatistics
    DataSourceId string
    The OCID of the parent DataSource.
    DefinedTags 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.
    FreeformTags 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.
    SystemTags 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.
    dataIngestionJobStatistics List<AgentDataIngestionJobDataIngestionJobStatistic>
    DataIngestionJobStatistics
    dataSourceId String
    The OCID of the parent DataSource.
    definedTags 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.
    freeformTags 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.
    systemTags 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.
    dataIngestionJobStatistics AgentDataIngestionJobDataIngestionJobStatistic[]
    DataIngestionJobStatistics
    dataSourceId string
    The OCID of the parent DataSource.
    definedTags {[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.
    freeformTags {[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.
    systemTags {[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_job_statistics Sequence[generativeai.AgentDataIngestionJobDataIngestionJobStatisticArgs]
    DataIngestionJobStatistics
    data_source_id str
    The OCID of the parent DataSource.
    defined_tags 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.
    freeform_tags 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.
    system_tags 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.
    dataIngestionJobStatistics List<Property Map>
    DataIngestionJobStatistics
    dataSourceId String
    The OCID of the parent DataSource.
    definedTags 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.
    freeformTags 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.
    systemTags 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

    DurationInSeconds int
    The duration of this ingestion job.
    NumberOfFailedFiles int
    The number of files that have failed during the ingestion.
    NumberOfIngestedFiles int
    The number of files that have been successfully ingested during the ingestion.
    DurationInSeconds int
    The duration of this ingestion job.
    NumberOfFailedFiles int
    The number of files that have failed during the ingestion.
    NumberOfIngestedFiles int
    The number of files that have been successfully ingested during the ingestion.
    durationInSeconds Integer
    The duration of this ingestion job.
    numberOfFailedFiles Integer
    The number of files that have failed during the ingestion.
    numberOfIngestedFiles Integer
    The number of files that have been successfully ingested during the ingestion.
    durationInSeconds number
    The duration of this ingestion job.
    numberOfFailedFiles number
    The number of files that have failed during the ingestion.
    numberOfIngestedFiles number
    The number of files that have been successfully ingested during the ingestion.
    duration_in_seconds int
    The duration of this ingestion job.
    number_of_failed_files int
    The number of files that have failed during the ingestion.
    number_of_ingested_files int
    The number of files that have been successfully ingested during the ingestion.
    durationInSeconds Number
    The duration of this ingestion job.
    numberOfFailedFiles Number
    The number of files that have failed during the ingestion.
    numberOfIngestedFiles Number
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 by Pulumi