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:
- Compartment
Id string - The OCID of the compartment to create the data ingestion job in.
- Data
Source 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.
- Display
Name 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
- Compartment
Id string - The OCID of the compartment to create the data ingestion job in.
- Data
Source 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.
- Display
Name 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
- compartment
Id String - The OCID of the compartment to create the data ingestion job in.
- data
Source 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.
- display
Name 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
- compartment
Id string - The OCID of the compartment to create the data ingestion job in.
- data
Source 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.
- display
Name 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
- compartment
Id String - The OCID of the compartment to create the data ingestion job in.
- data
Source 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.
- display
Name 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:
- Data
Ingestion List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> - DataIngestionJobStatistics
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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"}
- Time
Created 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
- Time
Updated 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 []AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic - DataIngestionJobStatistics
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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"}
- Time
Created 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
- Time
Updated 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 List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> - DataIngestionJobStatistics
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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"}
- time
Created 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
- time
Updated 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 AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic[] - DataIngestionJobStatistics
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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"}
- time
Created 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
- time
Updated 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[generativeai.job_ statistics Agent 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
- data
Ingestion List<Property Map>Job Statistics - DataIngestionJobStatistics
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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"}
- time
Created 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
- time
Updated 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.
- Compartment
Id string - The OCID of the compartment to create the data ingestion job in.
- Data
Ingestion List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> - DataIngestionJobStatistics
- Data
Source 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.
- Display
Name 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
- Lifecycle
Details 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"}
- Time
Created 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
- Time
Updated 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 string - The OCID of the compartment to create the data ingestion job in.
- Data
Ingestion []AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic Args - DataIngestionJobStatistics
- Data
Source 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.
- Display
Name 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
- Lifecycle
Details 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"}
- Time
Created 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
- Time
Updated 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 String - The OCID of the compartment to create the data ingestion job in.
- data
Ingestion List<AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic> - DataIngestionJobStatistics
- data
Source 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.
- display
Name 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
- lifecycle
Details 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"}
- time
Created 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
- time
Updated 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 string - The OCID of the compartment to create the data ingestion job in.
- data
Ingestion AgentJob Statistics Data Ingestion Job Data Ingestion Job Statistic[] - DataIngestionJobStatistics
- data
Source 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.
- display
Name 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
- lifecycle
Details 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"}
- time
Created 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
- time
Updated 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[generativeai.job_ statistics Agent 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
- compartment
Id String - The OCID of the compartment to create the data ingestion job in.
- data
Ingestion List<Property Map>Job Statistics - DataIngestionJobStatistics
- data
Source 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.
- display
Name 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
- lifecycle
Details 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"}
- time
Created 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
- time
Updated 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
- 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.
- 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.
- duration
In IntegerSeconds - The duration of this ingestion job.
- number
Of IntegerFailed Files - The number of files that have failed during the ingestion.
- number
Of IntegerIngested Files - The number of files that have been successfully ingested during the ingestion.
- duration
In numberSeconds - The duration of this ingestion job.
- number
Of numberFailed Files - The number of files that have failed during the ingestion.
- number
Of 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.
- duration
In NumberSeconds - The duration of this ingestion job.
- number
Of NumberFailed Files - The number of files that have failed during the ingestion.
- number
Of 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
oci
Terraform Provider.