published on Thursday, Mar 19, 2026 by Pulumi
published on Thursday, Mar 19, 2026 by Pulumi
Create KnowledgeAssistantKnowledgeSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KnowledgeAssistantKnowledgeSource(name: string, args: KnowledgeAssistantKnowledgeSourceArgs, opts?: CustomResourceOptions);@overload
def KnowledgeAssistantKnowledgeSource(resource_name: str,
args: KnowledgeAssistantKnowledgeSourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KnowledgeAssistantKnowledgeSource(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
parent: Optional[str] = None,
source_type: Optional[str] = None,
file_table: Optional[KnowledgeAssistantKnowledgeSourceFileTableArgs] = None,
files: Optional[KnowledgeAssistantKnowledgeSourceFilesArgs] = None,
index: Optional[KnowledgeAssistantKnowledgeSourceIndexArgs] = None,
provider_config: Optional[KnowledgeAssistantKnowledgeSourceProviderConfigArgs] = None)func NewKnowledgeAssistantKnowledgeSource(ctx *Context, name string, args KnowledgeAssistantKnowledgeSourceArgs, opts ...ResourceOption) (*KnowledgeAssistantKnowledgeSource, error)public KnowledgeAssistantKnowledgeSource(string name, KnowledgeAssistantKnowledgeSourceArgs args, CustomResourceOptions? opts = null)
public KnowledgeAssistantKnowledgeSource(String name, KnowledgeAssistantKnowledgeSourceArgs args)
public KnowledgeAssistantKnowledgeSource(String name, KnowledgeAssistantKnowledgeSourceArgs args, CustomResourceOptions options)
type: databricks:KnowledgeAssistantKnowledgeSource
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 KnowledgeAssistantKnowledgeSourceArgs
- 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 KnowledgeAssistantKnowledgeSourceArgs
- 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 KnowledgeAssistantKnowledgeSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KnowledgeAssistantKnowledgeSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KnowledgeAssistantKnowledgeSourceArgs
- 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 knowledgeAssistantKnowledgeSourceResource = new Databricks.KnowledgeAssistantKnowledgeSource("knowledgeAssistantKnowledgeSourceResource", new()
{
Description = "string",
DisplayName = "string",
Parent = "string",
SourceType = "string",
FileTable = new Databricks.Inputs.KnowledgeAssistantKnowledgeSourceFileTableArgs
{
FileCol = "string",
TableName = "string",
},
Files = new Databricks.Inputs.KnowledgeAssistantKnowledgeSourceFilesArgs
{
Path = "string",
},
Index = new Databricks.Inputs.KnowledgeAssistantKnowledgeSourceIndexArgs
{
DocUriCol = "string",
IndexName = "string",
TextCol = "string",
},
ProviderConfig = new Databricks.Inputs.KnowledgeAssistantKnowledgeSourceProviderConfigArgs
{
WorkspaceId = "string",
},
});
example, err := databricks.NewKnowledgeAssistantKnowledgeSource(ctx, "knowledgeAssistantKnowledgeSourceResource", &databricks.KnowledgeAssistantKnowledgeSourceArgs{
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Parent: pulumi.String("string"),
SourceType: pulumi.String("string"),
FileTable: &databricks.KnowledgeAssistantKnowledgeSourceFileTableArgs{
FileCol: pulumi.String("string"),
TableName: pulumi.String("string"),
},
Files: &databricks.KnowledgeAssistantKnowledgeSourceFilesArgs{
Path: pulumi.String("string"),
},
Index: &databricks.KnowledgeAssistantKnowledgeSourceIndexArgs{
DocUriCol: pulumi.String("string"),
IndexName: pulumi.String("string"),
TextCol: pulumi.String("string"),
},
ProviderConfig: &databricks.KnowledgeAssistantKnowledgeSourceProviderConfigArgs{
WorkspaceId: pulumi.String("string"),
},
})
var knowledgeAssistantKnowledgeSourceResource = new KnowledgeAssistantKnowledgeSource("knowledgeAssistantKnowledgeSourceResource", KnowledgeAssistantKnowledgeSourceArgs.builder()
.description("string")
.displayName("string")
.parent("string")
.sourceType("string")
.fileTable(KnowledgeAssistantKnowledgeSourceFileTableArgs.builder()
.fileCol("string")
.tableName("string")
.build())
.files(KnowledgeAssistantKnowledgeSourceFilesArgs.builder()
.path("string")
.build())
.index(KnowledgeAssistantKnowledgeSourceIndexArgs.builder()
.docUriCol("string")
.indexName("string")
.textCol("string")
.build())
.providerConfig(KnowledgeAssistantKnowledgeSourceProviderConfigArgs.builder()
.workspaceId("string")
.build())
.build());
knowledge_assistant_knowledge_source_resource = databricks.KnowledgeAssistantKnowledgeSource("knowledgeAssistantKnowledgeSourceResource",
description="string",
display_name="string",
parent="string",
source_type="string",
file_table={
"file_col": "string",
"table_name": "string",
},
files={
"path": "string",
},
index={
"doc_uri_col": "string",
"index_name": "string",
"text_col": "string",
},
provider_config={
"workspace_id": "string",
})
const knowledgeAssistantKnowledgeSourceResource = new databricks.KnowledgeAssistantKnowledgeSource("knowledgeAssistantKnowledgeSourceResource", {
description: "string",
displayName: "string",
parent: "string",
sourceType: "string",
fileTable: {
fileCol: "string",
tableName: "string",
},
files: {
path: "string",
},
index: {
docUriCol: "string",
indexName: "string",
textCol: "string",
},
providerConfig: {
workspaceId: "string",
},
});
type: databricks:KnowledgeAssistantKnowledgeSource
properties:
description: string
displayName: string
fileTable:
fileCol: string
tableName: string
files:
path: string
index:
docUriCol: string
indexName: string
textCol: string
parent: string
providerConfig:
workspaceId: string
sourceType: string
KnowledgeAssistantKnowledgeSource 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 KnowledgeAssistantKnowledgeSource resource accepts the following input properties:
- Description string
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- Display
Name string - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- Parent string
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- Source
Type string - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- File
Table KnowledgeAssistant Knowledge Source File Table - Files
Knowledge
Assistant Knowledge Source Files - Index
Knowledge
Assistant Knowledge Source Index - Provider
Config KnowledgeAssistant Knowledge Source Provider Config - Configure the provider for management through account provider.
- Description string
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- Display
Name string - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- Parent string
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- Source
Type string - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- File
Table KnowledgeAssistant Knowledge Source File Table Args - Files
Knowledge
Assistant Knowledge Source Files Args - Index
Knowledge
Assistant Knowledge Source Index Args - Provider
Config KnowledgeAssistant Knowledge Source Provider Config Args - Configure the provider for management through account provider.
- description String
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display
Name String - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- parent String
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- source
Type String - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- file
Table KnowledgeAssistant Knowledge Source File Table - files
Knowledge
Assistant Knowledge Source Files - index
Knowledge
Assistant Knowledge Source Index - provider
Config KnowledgeAssistant Knowledge Source Provider Config - Configure the provider for management through account provider.
- description string
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display
Name string - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- parent string
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- source
Type string - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- file
Table KnowledgeAssistant Knowledge Source File Table - files
Knowledge
Assistant Knowledge Source Files - index
Knowledge
Assistant Knowledge Source Index - provider
Config KnowledgeAssistant Knowledge Source Provider Config - Configure the provider for management through account provider.
- description str
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display_
name str - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- parent str
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- source_
type str - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- file_
table KnowledgeAssistant Knowledge Source File Table Args - files
Knowledge
Assistant Knowledge Source Files Args - index
Knowledge
Assistant Knowledge Source Index Args - provider_
config KnowledgeAssistant Knowledge Source Provider Config Args - Configure the provider for management through account provider.
- description String
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display
Name String - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- parent String
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- source
Type String - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- file
Table Property Map - files Property Map
- index Property Map
- provider
Config Property Map - Configure the provider for management through account provider.
Outputs
All input properties are implicitly available as output properties. Additionally, the KnowledgeAssistantKnowledgeSource resource produces the following output properties:
- Create
Time string - (string) - Timestamp when this knowledge source was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Knowledge
Cutoff stringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- Name string
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- State string
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- Create
Time string - (string) - Timestamp when this knowledge source was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Knowledge
Cutoff stringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- Name string
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- State string
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create
Time String - (string) - Timestamp when this knowledge source was created
- id String
- The provider-assigned unique ID for this managed resource.
- knowledge
Cutoff StringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name String
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- state String
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create
Time string - (string) - Timestamp when this knowledge source was created
- id string
- The provider-assigned unique ID for this managed resource.
- knowledge
Cutoff stringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name string
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- state string
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create_
time str - (string) - Timestamp when this knowledge source was created
- id str
- The provider-assigned unique ID for this managed resource.
- knowledge_
cutoff_ strtime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name str
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- state str
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create
Time String - (string) - Timestamp when this knowledge source was created
- id String
- The provider-assigned unique ID for this managed resource.
- knowledge
Cutoff StringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name String
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- state String
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
Look up Existing KnowledgeAssistantKnowledgeSource Resource
Get an existing KnowledgeAssistantKnowledgeSource 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?: KnowledgeAssistantKnowledgeSourceState, opts?: CustomResourceOptions): KnowledgeAssistantKnowledgeSource@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
file_table: Optional[KnowledgeAssistantKnowledgeSourceFileTableArgs] = None,
files: Optional[KnowledgeAssistantKnowledgeSourceFilesArgs] = None,
index: Optional[KnowledgeAssistantKnowledgeSourceIndexArgs] = None,
knowledge_cutoff_time: Optional[str] = None,
name: Optional[str] = None,
parent: Optional[str] = None,
provider_config: Optional[KnowledgeAssistantKnowledgeSourceProviderConfigArgs] = None,
source_type: Optional[str] = None,
state: Optional[str] = None) -> KnowledgeAssistantKnowledgeSourcefunc GetKnowledgeAssistantKnowledgeSource(ctx *Context, name string, id IDInput, state *KnowledgeAssistantKnowledgeSourceState, opts ...ResourceOption) (*KnowledgeAssistantKnowledgeSource, error)public static KnowledgeAssistantKnowledgeSource Get(string name, Input<string> id, KnowledgeAssistantKnowledgeSourceState? state, CustomResourceOptions? opts = null)public static KnowledgeAssistantKnowledgeSource get(String name, Output<String> id, KnowledgeAssistantKnowledgeSourceState state, CustomResourceOptions options)resources: _: type: databricks:KnowledgeAssistantKnowledgeSource get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - (string) - Timestamp when this knowledge source was created
- Description string
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- Display
Name string - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- File
Table KnowledgeAssistant Knowledge Source File Table - Files
Knowledge
Assistant Knowledge Source Files - Index
Knowledge
Assistant Knowledge Source Index - Knowledge
Cutoff stringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- Name string
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- Parent string
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- Provider
Config KnowledgeAssistant Knowledge Source Provider Config - Configure the provider for management through account provider.
- Source
Type string - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- State string
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- Create
Time string - (string) - Timestamp when this knowledge source was created
- Description string
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- Display
Name string - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- File
Table KnowledgeAssistant Knowledge Source File Table Args - Files
Knowledge
Assistant Knowledge Source Files Args - Index
Knowledge
Assistant Knowledge Source Index Args - Knowledge
Cutoff stringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- Name string
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- Parent string
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- Provider
Config KnowledgeAssistant Knowledge Source Provider Config Args - Configure the provider for management through account provider.
- Source
Type string - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- State string
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create
Time String - (string) - Timestamp when this knowledge source was created
- description String
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display
Name String - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- file
Table KnowledgeAssistant Knowledge Source File Table - files
Knowledge
Assistant Knowledge Source Files - index
Knowledge
Assistant Knowledge Source Index - knowledge
Cutoff StringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name String
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- parent String
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- provider
Config KnowledgeAssistant Knowledge Source Provider Config - Configure the provider for management through account provider.
- source
Type String - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- state String
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create
Time string - (string) - Timestamp when this knowledge source was created
- description string
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display
Name string - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- file
Table KnowledgeAssistant Knowledge Source File Table - files
Knowledge
Assistant Knowledge Source Files - index
Knowledge
Assistant Knowledge Source Index - knowledge
Cutoff stringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name string
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- parent string
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- provider
Config KnowledgeAssistant Knowledge Source Provider Config - Configure the provider for management through account provider.
- source
Type string - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- state string
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create_
time str - (string) - Timestamp when this knowledge source was created
- description str
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display_
name str - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- file_
table KnowledgeAssistant Knowledge Source File Table Args - files
Knowledge
Assistant Knowledge Source Files Args - index
Knowledge
Assistant Knowledge Source Index Args - knowledge_
cutoff_ strtime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name str
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- parent str
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- provider_
config KnowledgeAssistant Knowledge Source Provider Config Args - Configure the provider for management through account provider.
- source_
type str - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- state str
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
- create
Time String - (string) - Timestamp when this knowledge source was created
- description String
- Description of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- display
Name String - Human-readable display name of the knowledge source. Required when creating a Knowledge Source. When updating a Knowledge Source, optional unless included in update_mask
- file
Table Property Map - files Property Map
- index Property Map
- knowledge
Cutoff StringTime - (string) - Timestamp representing the cutoff before which content in this knowledge source is being ingested
- name String
- (string) - Full resource name: knowledge-assistants/{knowledge_assistant_id}/knowledge-sources/{knowledge_source_id}
- parent String
- Parent resource where this source will be created. Format: knowledge-assistants/{knowledge_assistant_id}
- provider
Config Property Map - Configure the provider for management through account provider.
- source
Type String - The type of the source: "index", "files", or <span pulumi-lang-nodejs=""fileTable"" pulumi-lang-dotnet=""FileTable"" pulumi-lang-go=""fileTable"" pulumi-lang-python=""file_table"" pulumi-lang-yaml=""fileTable"" pulumi-lang-java=""fileTable"">"file_table". Required when creating a Knowledge Source. When updating a Knowledge Source, this field is ignored
- state String
- (string) - Possible values are:
FAILED_UPDATE,UPDATED,UPDATING
Supporting Types
KnowledgeAssistantKnowledgeSourceFileTable, KnowledgeAssistantKnowledgeSourceFileTableArgs
- file_
col str - The name of the column containing BINARY file content to be indexed
- table_
name str - Full UC name of the table, in the format of {CATALOG}.{SCHEMA}.{TABLE_NAME}
KnowledgeAssistantKnowledgeSourceFiles, KnowledgeAssistantKnowledgeSourceFilesArgs
- Path string
- A UC volume path that includes a list of files
- Path string
- A UC volume path that includes a list of files
- path String
- A UC volume path that includes a list of files
- path string
- A UC volume path that includes a list of files
- path str
- A UC volume path that includes a list of files
- path String
- A UC volume path that includes a list of files
KnowledgeAssistantKnowledgeSourceIndex, KnowledgeAssistantKnowledgeSourceIndexArgs
- doc_
uri_ strcol - The column that specifies a link or reference to where the information came from
- index_
name str - Full UC name of the vector search index, in the format of {CATALOG}.{SCHEMA}.{INDEX_NAME}
- text_
col str - The column that includes the document text for retrieval
KnowledgeAssistantKnowledgeSourceProviderConfig, KnowledgeAssistantKnowledgeSourceProviderConfigArgs
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace_
id str - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Thursday, Mar 19, 2026 by Pulumi
