oci.GenerativeAi.AgentDataSource
Explore with Pulumi AI
This resource provides the Data Source resource in Oracle Cloud Infrastructure Generative Ai Agent service.
CreateDataSource
Creates a data source.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDataSource = new oci.generativeai.AgentDataSource("test_data_source", {
compartmentId: compartmentId,
dataSourceConfig: {
dataSourceConfigType: dataSourceDataSourceConfigDataSourceConfigType,
objectStoragePrefixes: [{
bucket: dataSourceDataSourceConfigObjectStoragePrefixesBucket,
namespace: dataSourceDataSourceConfigObjectStoragePrefixesNamespace,
prefix: dataSourceDataSourceConfigObjectStoragePrefixesPrefix,
}],
},
knowledgeBaseId: testKnowledgeBase.id,
definedTags: {
"Operations.CostCenter": "42",
},
description: dataSourceDescription,
displayName: dataSourceDisplayName,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_data_source = oci.generative_ai.AgentDataSource("test_data_source",
compartment_id=compartment_id,
data_source_config={
"data_source_config_type": data_source_data_source_config_data_source_config_type,
"object_storage_prefixes": [{
"bucket": data_source_data_source_config_object_storage_prefixes_bucket,
"namespace": data_source_data_source_config_object_storage_prefixes_namespace,
"prefix": data_source_data_source_config_object_storage_prefixes_prefix,
}],
},
knowledge_base_id=test_knowledge_base["id"],
defined_tags={
"Operations.CostCenter": "42",
},
description=data_source_description,
display_name=data_source_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.NewAgentDataSource(ctx, "test_data_source", &GenerativeAi.AgentDataSourceArgs{
CompartmentId: pulumi.Any(compartmentId),
DataSourceConfig: &generativeai.AgentDataSourceDataSourceConfigArgs{
DataSourceConfigType: pulumi.Any(dataSourceDataSourceConfigDataSourceConfigType),
ObjectStoragePrefixes: generativeai.AgentDataSourceDataSourceConfigObjectStoragePrefixArray{
&generativeai.AgentDataSourceDataSourceConfigObjectStoragePrefixArgs{
Bucket: pulumi.Any(dataSourceDataSourceConfigObjectStoragePrefixesBucket),
Namespace: pulumi.Any(dataSourceDataSourceConfigObjectStoragePrefixesNamespace),
Prefix: pulumi.Any(dataSourceDataSourceConfigObjectStoragePrefixesPrefix),
},
},
},
KnowledgeBaseId: pulumi.Any(testKnowledgeBase.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
Description: pulumi.Any(dataSourceDescription),
DisplayName: pulumi.Any(dataSourceDisplayName),
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 testDataSource = new Oci.GenerativeAi.AgentDataSource("test_data_source", new()
{
CompartmentId = compartmentId,
DataSourceConfig = new Oci.GenerativeAi.Inputs.AgentDataSourceDataSourceConfigArgs
{
DataSourceConfigType = dataSourceDataSourceConfigDataSourceConfigType,
ObjectStoragePrefixes = new[]
{
new Oci.GenerativeAi.Inputs.AgentDataSourceDataSourceConfigObjectStoragePrefixArgs
{
Bucket = dataSourceDataSourceConfigObjectStoragePrefixesBucket,
Namespace = dataSourceDataSourceConfigObjectStoragePrefixesNamespace,
Prefix = dataSourceDataSourceConfigObjectStoragePrefixesPrefix,
},
},
},
KnowledgeBaseId = testKnowledgeBase.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = dataSourceDescription,
DisplayName = dataSourceDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GenerativeAi.AgentDataSource;
import com.pulumi.oci.GenerativeAi.AgentDataSourceArgs;
import com.pulumi.oci.GenerativeAi.inputs.AgentDataSourceDataSourceConfigArgs;
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 testDataSource = new AgentDataSource("testDataSource", AgentDataSourceArgs.builder()
.compartmentId(compartmentId)
.dataSourceConfig(AgentDataSourceDataSourceConfigArgs.builder()
.dataSourceConfigType(dataSourceDataSourceConfigDataSourceConfigType)
.objectStoragePrefixes(AgentDataSourceDataSourceConfigObjectStoragePrefixArgs.builder()
.bucket(dataSourceDataSourceConfigObjectStoragePrefixesBucket)
.namespace(dataSourceDataSourceConfigObjectStoragePrefixesNamespace)
.prefix(dataSourceDataSourceConfigObjectStoragePrefixesPrefix)
.build())
.build())
.knowledgeBaseId(testKnowledgeBase.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(dataSourceDescription)
.displayName(dataSourceDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testDataSource:
type: oci:GenerativeAi:AgentDataSource
name: test_data_source
properties:
compartmentId: ${compartmentId}
dataSourceConfig:
dataSourceConfigType: ${dataSourceDataSourceConfigDataSourceConfigType}
objectStoragePrefixes:
- bucket: ${dataSourceDataSourceConfigObjectStoragePrefixesBucket}
namespace: ${dataSourceDataSourceConfigObjectStoragePrefixesNamespace}
prefix: ${dataSourceDataSourceConfigObjectStoragePrefixesPrefix}
knowledgeBaseId: ${testKnowledgeBase.id}
definedTags:
Operations.CostCenter: '42'
description: ${dataSourceDescription}
displayName: ${dataSourceDisplayName}
freeformTags:
Department: Finance
Create AgentDataSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AgentDataSource(name: string, args: AgentDataSourceArgs, opts?: CustomResourceOptions);
@overload
def AgentDataSource(resource_name: str,
args: AgentDataSourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AgentDataSource(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
data_source_config: Optional[_generativeai.AgentDataSourceDataSourceConfigArgs] = None,
knowledge_base_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 NewAgentDataSource(ctx *Context, name string, args AgentDataSourceArgs, opts ...ResourceOption) (*AgentDataSource, error)
public AgentDataSource(string name, AgentDataSourceArgs args, CustomResourceOptions? opts = null)
public AgentDataSource(String name, AgentDataSourceArgs args)
public AgentDataSource(String name, AgentDataSourceArgs args, CustomResourceOptions options)
type: oci:GenerativeAi:AgentDataSource
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 AgentDataSourceArgs
- 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 AgentDataSourceArgs
- 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 AgentDataSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AgentDataSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AgentDataSourceArgs
- 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 agentDataSourceResource = new Oci.GenerativeAi.AgentDataSource("agentDataSourceResource", new()
{
CompartmentId = "string",
DataSourceConfig = new Oci.GenerativeAi.Inputs.AgentDataSourceDataSourceConfigArgs
{
DataSourceConfigType = "string",
ObjectStoragePrefixes = new[]
{
new Oci.GenerativeAi.Inputs.AgentDataSourceDataSourceConfigObjectStoragePrefixArgs
{
Bucket = "string",
Namespace = "string",
Prefix = "string",
},
},
},
KnowledgeBaseId = "string",
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
});
example, err := GenerativeAi.NewAgentDataSource(ctx, "agentDataSourceResource", &GenerativeAi.AgentDataSourceArgs{
CompartmentId: pulumi.String("string"),
DataSourceConfig: &generativeai.AgentDataSourceDataSourceConfigArgs{
DataSourceConfigType: pulumi.String("string"),
ObjectStoragePrefixes: generativeai.AgentDataSourceDataSourceConfigObjectStoragePrefixArray{
&generativeai.AgentDataSourceDataSourceConfigObjectStoragePrefixArgs{
Bucket: pulumi.String("string"),
Namespace: pulumi.String("string"),
Prefix: pulumi.String("string"),
},
},
},
KnowledgeBaseId: 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 agentDataSourceResource = new AgentDataSource("agentDataSourceResource", AgentDataSourceArgs.builder()
.compartmentId("string")
.dataSourceConfig(AgentDataSourceDataSourceConfigArgs.builder()
.dataSourceConfigType("string")
.objectStoragePrefixes(AgentDataSourceDataSourceConfigObjectStoragePrefixArgs.builder()
.bucket("string")
.namespace("string")
.prefix("string")
.build())
.build())
.knowledgeBaseId("string")
.definedTags(Map.of("string", "string"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.build());
agent_data_source_resource = oci.generative_ai.AgentDataSource("agentDataSourceResource",
compartment_id="string",
data_source_config={
"data_source_config_type": "string",
"object_storage_prefixes": [{
"bucket": "string",
"namespace": "string",
"prefix": "string",
}],
},
knowledge_base_id="string",
defined_tags={
"string": "string",
},
description="string",
display_name="string",
freeform_tags={
"string": "string",
})
const agentDataSourceResource = new oci.generativeai.AgentDataSource("agentDataSourceResource", {
compartmentId: "string",
dataSourceConfig: {
dataSourceConfigType: "string",
objectStoragePrefixes: [{
bucket: "string",
namespace: "string",
prefix: "string",
}],
},
knowledgeBaseId: "string",
definedTags: {
string: "string",
},
description: "string",
displayName: "string",
freeformTags: {
string: "string",
},
});
type: oci:GenerativeAi:AgentDataSource
properties:
compartmentId: string
dataSourceConfig:
dataSourceConfigType: string
objectStoragePrefixes:
- bucket: string
namespace: string
prefix: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
knowledgeBaseId: string
AgentDataSource 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 AgentDataSource resource accepts the following input properties:
- Compartment
Id string - The OCID of the compartment to create the data source in.
- Data
Source AgentConfig Data Source Data Source Config (Updatable) DataSourceConfig
The details of data source.
- Knowledge
Base stringId The OCID of the parent KnowledgeBase.
** 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
- Dictionary<string, string>
- (Updatable) 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
- (Updatable) A description of the data source.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) 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"}
- Compartment
Id string - The OCID of the compartment to create the data source in.
- Data
Source AgentConfig Data Source Data Source Config Args (Updatable) DataSourceConfig
The details of data source.
- Knowledge
Base stringId The OCID of the parent KnowledgeBase.
** 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
- map[string]string
- (Updatable) 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
- (Updatable) A description of the data source.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) 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"}
- compartment
Id String - The OCID of the compartment to create the data source in.
- data
Source AgentConfig Data Source Data Source Config (Updatable) DataSourceConfig
The details of data source.
- knowledge
Base StringId The OCID of the parent KnowledgeBase.
** 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
- Map<String,String>
- (Updatable) 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
- (Updatable) A description of the data source.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) 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"}
- compartment
Id string - The OCID of the compartment to create the data source in.
- data
Source AgentConfig Data Source Data Source Config (Updatable) DataSourceConfig
The details of data source.
- knowledge
Base stringId The OCID of the parent KnowledgeBase.
** 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
- {[key: string]: string}
- (Updatable) 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
- (Updatable) A description of the data source.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) 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"}
- compartment_
id str - The OCID of the compartment to create the data source in.
- data_
source_ generativeai.config Agent Data Source Data Source Config Args (Updatable) DataSourceConfig
The details of data source.
- knowledge_
base_ strid The OCID of the parent KnowledgeBase.
** 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
- Mapping[str, str]
- (Updatable) 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
- (Updatable) A description of the data source.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) 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"}
- compartment
Id String - The OCID of the compartment to create the data source in.
- data
Source Property MapConfig (Updatable) DataSourceConfig
The details of data source.
- knowledge
Base StringId The OCID of the parent KnowledgeBase.
** 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
- Map<String>
- (Updatable) 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
- (Updatable) A description of the data source.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) 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"}
Outputs
All input properties are implicitly available as output properties. Additionally, the AgentDataSource resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message that describes the current state of the data source 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 source.
- 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 source 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 source was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message that describes the current state of the data source 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 source.
- 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 source 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 source was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message that describes the current state of the data source 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 source.
- 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 source 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 source was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message that describes the current state of the data source 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 source.
- {[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 source 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 source was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message that describes the current state of the data source 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 source.
- 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 source 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 source was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message that describes the current state of the data source 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 source.
- 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 source 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 source was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing AgentDataSource Resource
Get an existing AgentDataSource 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?: AgentDataSourceState, opts?: CustomResourceOptions): AgentDataSource
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
data_source_config: Optional[_generativeai.AgentDataSourceDataSourceConfigArgs] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
knowledge_base_id: Optional[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) -> AgentDataSource
func GetAgentDataSource(ctx *Context, name string, id IDInput, state *AgentDataSourceState, opts ...ResourceOption) (*AgentDataSource, error)
public static AgentDataSource Get(string name, Input<string> id, AgentDataSourceState? state, CustomResourceOptions? opts = null)
public static AgentDataSource get(String name, Output<String> id, AgentDataSourceState 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 source in.
- Data
Source AgentConfig Data Source Data Source Config (Updatable) DataSourceConfig
The details of data source.
- Dictionary<string, string>
- (Updatable) 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
- (Updatable) A description of the data source.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) 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"}
- Knowledge
Base stringId The OCID of the parent KnowledgeBase.
** 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 source 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 source.
- 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 source 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 source 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 source in.
- Data
Source AgentConfig Data Source Data Source Config Args (Updatable) DataSourceConfig
The details of data source.
- map[string]string
- (Updatable) 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
- (Updatable) A description of the data source.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) 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"}
- Knowledge
Base stringId The OCID of the parent KnowledgeBase.
** 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 source 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 source.
- 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 source 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 source 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 source in.
- data
Source AgentConfig Data Source Data Source Config (Updatable) DataSourceConfig
The details of data source.
- Map<String,String>
- (Updatable) 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
- (Updatable) A description of the data source.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) 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"}
- knowledge
Base StringId The OCID of the parent KnowledgeBase.
** 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 source 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 source.
- 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 source 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 source 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 source in.
- data
Source AgentConfig Data Source Data Source Config (Updatable) DataSourceConfig
The details of data source.
- {[key: string]: string}
- (Updatable) 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
- (Updatable) A description of the data source.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) 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"}
- knowledge
Base stringId The OCID of the parent KnowledgeBase.
** 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 source 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 source.
- {[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 source 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 source 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 source in.
- data_
source_ generativeai.config Agent Data Source Data Source Config Args (Updatable) DataSourceConfig
The details of data source.
- Mapping[str, str]
- (Updatable) 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
- (Updatable) A description of the data source.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) 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"}
- knowledge_
base_ strid The OCID of the parent KnowledgeBase.
** 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 source 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 source.
- 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 source 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 source 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 source in.
- data
Source Property MapConfig (Updatable) DataSourceConfig
The details of data source.
- Map<String>
- (Updatable) 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
- (Updatable) A description of the data source.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) 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"}
- knowledge
Base StringId The OCID of the parent KnowledgeBase.
** 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 source 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 source.
- 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 source 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 source was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Supporting Types
AgentDataSourceDataSourceConfig, AgentDataSourceDataSourceConfigArgs
- Data
Source stringConfig Type - (Updatable) The type of the tool. The allowed values are:
OCI_OBJECT_STORAGE
: The data source is Oracle Cloud Infrastructure Object Storage.
- Object
Storage List<AgentPrefixes Data Source Data Source Config Object Storage Prefix> - (Updatable) The locations of data items in Object Storage, can either be an object (File) or a prefix (folder).
- Data
Source stringConfig Type - (Updatable) The type of the tool. The allowed values are:
OCI_OBJECT_STORAGE
: The data source is Oracle Cloud Infrastructure Object Storage.
- Object
Storage []AgentPrefixes Data Source Data Source Config Object Storage Prefix - (Updatable) The locations of data items in Object Storage, can either be an object (File) or a prefix (folder).
- data
Source StringConfig Type - (Updatable) The type of the tool. The allowed values are:
OCI_OBJECT_STORAGE
: The data source is Oracle Cloud Infrastructure Object Storage.
- object
Storage List<AgentPrefixes Data Source Data Source Config Object Storage Prefix> - (Updatable) The locations of data items in Object Storage, can either be an object (File) or a prefix (folder).
- data
Source stringConfig Type - (Updatable) The type of the tool. The allowed values are:
OCI_OBJECT_STORAGE
: The data source is Oracle Cloud Infrastructure Object Storage.
- object
Storage AgentPrefixes Data Source Data Source Config Object Storage Prefix[] - (Updatable) The locations of data items in Object Storage, can either be an object (File) or a prefix (folder).
- data_
source_ strconfig_ type - (Updatable) The type of the tool. The allowed values are:
OCI_OBJECT_STORAGE
: The data source is Oracle Cloud Infrastructure Object Storage.
- object_
storage_ Sequence[generativeai.prefixes Agent Data Source Data Source Config Object Storage Prefix] - (Updatable) The locations of data items in Object Storage, can either be an object (File) or a prefix (folder).
- data
Source StringConfig Type - (Updatable) The type of the tool. The allowed values are:
OCI_OBJECT_STORAGE
: The data source is Oracle Cloud Infrastructure Object Storage.
- object
Storage List<Property Map>Prefixes - (Updatable) The locations of data items in Object Storage, can either be an object (File) or a prefix (folder).
AgentDataSourceDataSourceConfigObjectStoragePrefix, AgentDataSourceDataSourceConfigObjectStoragePrefixArgs
Import
DataSources can be imported using the id
, e.g.
$ pulumi import oci:GenerativeAi/agentDataSource:AgentDataSource test_data_source "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.