published on Tuesday, May 12, 2026 by Pulumi
published on Tuesday, May 12, 2026 by Pulumi
Create SupervisorAgentTool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SupervisorAgentTool(name: string, args: SupervisorAgentToolArgs, opts?: CustomResourceOptions);@overload
def SupervisorAgentTool(resource_name: str,
args: SupervisorAgentToolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SupervisorAgentTool(resource_name: str,
opts: Optional[ResourceOptions] = None,
parent: Optional[str] = None,
tool_id: Optional[str] = None,
tool_type: Optional[str] = None,
app: Optional[SupervisorAgentToolAppArgs] = None,
description: Optional[str] = None,
genie_space: Optional[SupervisorAgentToolGenieSpaceArgs] = None,
knowledge_assistant: Optional[SupervisorAgentToolKnowledgeAssistantArgs] = None,
provider_config: Optional[SupervisorAgentToolProviderConfigArgs] = None,
uc_connection: Optional[SupervisorAgentToolUcConnectionArgs] = None,
uc_function: Optional[SupervisorAgentToolUcFunctionArgs] = None,
volume: Optional[SupervisorAgentToolVolumeArgs] = None)func NewSupervisorAgentTool(ctx *Context, name string, args SupervisorAgentToolArgs, opts ...ResourceOption) (*SupervisorAgentTool, error)public SupervisorAgentTool(string name, SupervisorAgentToolArgs args, CustomResourceOptions? opts = null)
public SupervisorAgentTool(String name, SupervisorAgentToolArgs args)
public SupervisorAgentTool(String name, SupervisorAgentToolArgs args, CustomResourceOptions options)
type: databricks:SupervisorAgentTool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "databricks_supervisoragenttool" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SupervisorAgentToolArgs
- 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 SupervisorAgentToolArgs
- 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 SupervisorAgentToolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SupervisorAgentToolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SupervisorAgentToolArgs
- 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 supervisorAgentToolResource = new Databricks.SupervisorAgentTool("supervisorAgentToolResource", new()
{
Parent = "string",
ToolId = "string",
ToolType = "string",
App = new Databricks.Inputs.SupervisorAgentToolAppArgs
{
Name = "string",
},
Description = "string",
GenieSpace = new Databricks.Inputs.SupervisorAgentToolGenieSpaceArgs
{
Id = "string",
},
KnowledgeAssistant = new Databricks.Inputs.SupervisorAgentToolKnowledgeAssistantArgs
{
KnowledgeAssistantId = "string",
ServingEndpointName = "string",
},
ProviderConfig = new Databricks.Inputs.SupervisorAgentToolProviderConfigArgs
{
WorkspaceId = "string",
},
UcConnection = new Databricks.Inputs.SupervisorAgentToolUcConnectionArgs
{
Name = "string",
},
UcFunction = new Databricks.Inputs.SupervisorAgentToolUcFunctionArgs
{
Name = "string",
},
Volume = new Databricks.Inputs.SupervisorAgentToolVolumeArgs
{
Name = "string",
},
});
example, err := databricks.NewSupervisorAgentTool(ctx, "supervisorAgentToolResource", &databricks.SupervisorAgentToolArgs{
Parent: pulumi.String("string"),
ToolId: pulumi.String("string"),
ToolType: pulumi.String("string"),
App: &databricks.SupervisorAgentToolAppArgs{
Name: pulumi.String("string"),
},
Description: pulumi.String("string"),
GenieSpace: &databricks.SupervisorAgentToolGenieSpaceArgs{
Id: pulumi.String("string"),
},
KnowledgeAssistant: &databricks.SupervisorAgentToolKnowledgeAssistantArgs{
KnowledgeAssistantId: pulumi.String("string"),
ServingEndpointName: pulumi.String("string"),
},
ProviderConfig: &databricks.SupervisorAgentToolProviderConfigArgs{
WorkspaceId: pulumi.String("string"),
},
UcConnection: &databricks.SupervisorAgentToolUcConnectionArgs{
Name: pulumi.String("string"),
},
UcFunction: &databricks.SupervisorAgentToolUcFunctionArgs{
Name: pulumi.String("string"),
},
Volume: &databricks.SupervisorAgentToolVolumeArgs{
Name: pulumi.String("string"),
},
})
resource "databricks_supervisoragenttool" "supervisorAgentToolResource" {
parent = "string"
tool_id = "string"
tool_type = "string"
app = {
name = "string"
}
description = "string"
genie_space = {
id = "string"
}
knowledge_assistant = {
knowledge_assistant_id = "string"
serving_endpoint_name = "string"
}
provider_config = {
workspace_id = "string"
}
uc_connection = {
name = "string"
}
uc_function = {
name = "string"
}
volume = {
name = "string"
}
}
var supervisorAgentToolResource = new SupervisorAgentTool("supervisorAgentToolResource", SupervisorAgentToolArgs.builder()
.parent("string")
.toolId("string")
.toolType("string")
.app(SupervisorAgentToolAppArgs.builder()
.name("string")
.build())
.description("string")
.genieSpace(SupervisorAgentToolGenieSpaceArgs.builder()
.id("string")
.build())
.knowledgeAssistant(SupervisorAgentToolKnowledgeAssistantArgs.builder()
.knowledgeAssistantId("string")
.servingEndpointName("string")
.build())
.providerConfig(SupervisorAgentToolProviderConfigArgs.builder()
.workspaceId("string")
.build())
.ucConnection(SupervisorAgentToolUcConnectionArgs.builder()
.name("string")
.build())
.ucFunction(SupervisorAgentToolUcFunctionArgs.builder()
.name("string")
.build())
.volume(SupervisorAgentToolVolumeArgs.builder()
.name("string")
.build())
.build());
supervisor_agent_tool_resource = databricks.SupervisorAgentTool("supervisorAgentToolResource",
parent="string",
tool_id="string",
tool_type="string",
app={
"name": "string",
},
description="string",
genie_space={
"id": "string",
},
knowledge_assistant={
"knowledge_assistant_id": "string",
"serving_endpoint_name": "string",
},
provider_config={
"workspace_id": "string",
},
uc_connection={
"name": "string",
},
uc_function={
"name": "string",
},
volume={
"name": "string",
})
const supervisorAgentToolResource = new databricks.SupervisorAgentTool("supervisorAgentToolResource", {
parent: "string",
toolId: "string",
toolType: "string",
app: {
name: "string",
},
description: "string",
genieSpace: {
id: "string",
},
knowledgeAssistant: {
knowledgeAssistantId: "string",
servingEndpointName: "string",
},
providerConfig: {
workspaceId: "string",
},
ucConnection: {
name: "string",
},
ucFunction: {
name: "string",
},
volume: {
name: "string",
},
});
type: databricks:SupervisorAgentTool
properties:
app:
name: string
description: string
genieSpace:
id: string
knowledgeAssistant:
knowledgeAssistantId: string
servingEndpointName: string
parent: string
providerConfig:
workspaceId: string
toolId: string
toolType: string
ucConnection:
name: string
ucFunction:
name: string
volume:
name: string
SupervisorAgentTool 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 SupervisorAgentTool resource accepts the following input properties:
- Parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- Tool
Id string - User specified id of the Tool
- Tool
Type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- App
Supervisor
Agent Tool App - Description string
- Description of what this tool does (user-facing)
- Genie
Space SupervisorAgent Tool Genie Space - Knowledge
Assistant SupervisorAgent Tool Knowledge Assistant - Provider
Config SupervisorAgent Tool Provider Config - Configure the provider for management through account provider.
- Uc
Connection SupervisorAgent Tool Uc Connection - Uc
Function SupervisorAgent Tool Uc Function - Volume
Supervisor
Agent Tool Volume
- Parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- Tool
Id string - User specified id of the Tool
- Tool
Type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- App
Supervisor
Agent Tool App Args - Description string
- Description of what this tool does (user-facing)
- Genie
Space SupervisorAgent Tool Genie Space Args - Knowledge
Assistant SupervisorAgent Tool Knowledge Assistant Args - Provider
Config SupervisorAgent Tool Provider Config Args - Configure the provider for management through account provider.
- Uc
Connection SupervisorAgent Tool Uc Connection Args - Uc
Function SupervisorAgent Tool Uc Function Args - Volume
Supervisor
Agent Tool Volume Args
- parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- tool_
id string - User specified id of the Tool
- tool_
type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- app object
- description string
- Description of what this tool does (user-facing)
- genie_
space object - knowledge_
assistant object - provider_
config object - Configure the provider for management through account provider.
- uc_
connection object - uc_
function object - volume object
- parent String
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- tool
Id String - User specified id of the Tool
- tool
Type String - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- app
Supervisor
Agent Tool App - description String
- Description of what this tool does (user-facing)
- genie
Space SupervisorAgent Tool Genie Space - knowledge
Assistant SupervisorAgent Tool Knowledge Assistant - provider
Config SupervisorAgent Tool Provider Config - Configure the provider for management through account provider.
- uc
Connection SupervisorAgent Tool Uc Connection - uc
Function SupervisorAgent Tool Uc Function - volume
Supervisor
Agent Tool Volume
- parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- tool
Id string - User specified id of the Tool
- tool
Type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- app
Supervisor
Agent Tool App - description string
- Description of what this tool does (user-facing)
- genie
Space SupervisorAgent Tool Genie Space - knowledge
Assistant SupervisorAgent Tool Knowledge Assistant - provider
Config SupervisorAgent Tool Provider Config - Configure the provider for management through account provider.
- uc
Connection SupervisorAgent Tool Uc Connection - uc
Function SupervisorAgent Tool Uc Function - volume
Supervisor
Agent Tool Volume
- parent str
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- tool_
id str - User specified id of the Tool
- tool_
type str - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- app
Supervisor
Agent Tool App Args - description str
- Description of what this tool does (user-facing)
- genie_
space SupervisorAgent Tool Genie Space Args - knowledge_
assistant SupervisorAgent Tool Knowledge Assistant Args - provider_
config SupervisorAgent Tool Provider Config Args - Configure the provider for management through account provider.
- uc_
connection SupervisorAgent Tool Uc Connection Args - uc_
function SupervisorAgent Tool Uc Function Args - volume
Supervisor
Agent Tool Volume Args
- parent String
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- tool
Id String - User specified id of the Tool
- tool
Type String - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- app Property Map
- description String
- Description of what this tool does (user-facing)
- genie
Space Property Map - knowledge
Assistant Property Map - provider
Config Property Map - Configure the provider for management through account provider.
- uc
Connection Property Map - uc
Function Property Map - volume Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the SupervisorAgentTool resource produces the following output properties:
Look up Existing SupervisorAgentTool Resource
Get an existing SupervisorAgentTool 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?: SupervisorAgentToolState, opts?: CustomResourceOptions): SupervisorAgentTool@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app: Optional[SupervisorAgentToolAppArgs] = None,
description: Optional[str] = None,
genie_space: Optional[SupervisorAgentToolGenieSpaceArgs] = None,
knowledge_assistant: Optional[SupervisorAgentToolKnowledgeAssistantArgs] = None,
name: Optional[str] = None,
parent: Optional[str] = None,
provider_config: Optional[SupervisorAgentToolProviderConfigArgs] = None,
tool_id: Optional[str] = None,
tool_type: Optional[str] = None,
uc_connection: Optional[SupervisorAgentToolUcConnectionArgs] = None,
uc_function: Optional[SupervisorAgentToolUcFunctionArgs] = None,
volume: Optional[SupervisorAgentToolVolumeArgs] = None) -> SupervisorAgentToolfunc GetSupervisorAgentTool(ctx *Context, name string, id IDInput, state *SupervisorAgentToolState, opts ...ResourceOption) (*SupervisorAgentTool, error)public static SupervisorAgentTool Get(string name, Input<string> id, SupervisorAgentToolState? state, CustomResourceOptions? opts = null)public static SupervisorAgentTool get(String name, Output<String> id, SupervisorAgentToolState state, CustomResourceOptions options)resources: _: type: databricks:SupervisorAgentTool get: id: ${id}import {
to = databricks_supervisoragenttool.example
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.
- App
Supervisor
Agent Tool App - Description string
- Description of what this tool does (user-facing)
- Genie
Space SupervisorAgent Tool Genie Space - Knowledge
Assistant SupervisorAgent Tool Knowledge Assistant - Name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- Parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- Provider
Config SupervisorAgent Tool Provider Config - Configure the provider for management through account provider.
- Tool
Id string - User specified id of the Tool
- Tool
Type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- Uc
Connection SupervisorAgent Tool Uc Connection - Uc
Function SupervisorAgent Tool Uc Function - Volume
Supervisor
Agent Tool Volume
- App
Supervisor
Agent Tool App Args - Description string
- Description of what this tool does (user-facing)
- Genie
Space SupervisorAgent Tool Genie Space Args - Knowledge
Assistant SupervisorAgent Tool Knowledge Assistant Args - Name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- Parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- Provider
Config SupervisorAgent Tool Provider Config Args - Configure the provider for management through account provider.
- Tool
Id string - User specified id of the Tool
- Tool
Type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- Uc
Connection SupervisorAgent Tool Uc Connection Args - Uc
Function SupervisorAgent Tool Uc Function Args - Volume
Supervisor
Agent Tool Volume Args
- app object
- description string
- Description of what this tool does (user-facing)
- genie_
space object - knowledge_
assistant object - name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- provider_
config object - Configure the provider for management through account provider.
- tool_
id string - User specified id of the Tool
- tool_
type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- uc_
connection object - uc_
function object - volume object
- app
Supervisor
Agent Tool App - description String
- Description of what this tool does (user-facing)
- genie
Space SupervisorAgent Tool Genie Space - knowledge
Assistant SupervisorAgent Tool Knowledge Assistant - name String
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- parent String
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- provider
Config SupervisorAgent Tool Provider Config - Configure the provider for management through account provider.
- tool
Id String - User specified id of the Tool
- tool
Type String - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- uc
Connection SupervisorAgent Tool Uc Connection - uc
Function SupervisorAgent Tool Uc Function - volume
Supervisor
Agent Tool Volume
- app
Supervisor
Agent Tool App - description string
- Description of what this tool does (user-facing)
- genie
Space SupervisorAgent Tool Genie Space - knowledge
Assistant SupervisorAgent Tool Knowledge Assistant - name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- parent string
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- provider
Config SupervisorAgent Tool Provider Config - Configure the provider for management through account provider.
- tool
Id string - User specified id of the Tool
- tool
Type string - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- uc
Connection SupervisorAgent Tool Uc Connection - uc
Function SupervisorAgent Tool Uc Function - volume
Supervisor
Agent Tool Volume
- app
Supervisor
Agent Tool App Args - description str
- Description of what this tool does (user-facing)
- genie_
space SupervisorAgent Tool Genie Space Args - knowledge_
assistant SupervisorAgent Tool Knowledge Assistant Args - name str
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- parent str
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- provider_
config SupervisorAgent Tool Provider Config Args - Configure the provider for management through account provider.
- tool_
id str - User specified id of the Tool
- tool_
type str - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- uc_
connection SupervisorAgent Tool Uc Connection Args - uc_
function SupervisorAgent Tool Uc Function Args - volume
Supervisor
Agent Tool Volume Args
- app Property Map
- description String
- Description of what this tool does (user-facing)
- genie
Space Property Map - knowledge
Assistant Property Map - name String
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- parent String
- Parent resource where this tool will be created. Format: supervisor-agents/{supervisor_agent_id}
- provider
Config Property Map - Configure the provider for management through account provider.
- tool
Id String - User specified id of the Tool
- tool
Type String - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "app", "volume", "lakeviewDashboard", "servingEndpoint", "ucTable", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "webSearch"
- uc
Connection Property Map - uc
Function Property Map - volume Property Map
Supporting Types
SupervisorAgentToolApp, SupervisorAgentToolAppArgs
- Name string
- App name
- Name string
- App name
- name string
- App name
- name String
- App name
- name string
- App name
- name str
- App name
- name String
- App name
SupervisorAgentToolGenieSpace, SupervisorAgentToolGenieSpaceArgs
- Id string
- (string, deprecated) - Deprecated: Use toolId instead
- Id string
- (string, deprecated) - Deprecated: Use toolId instead
- id string
- (string, deprecated) - Deprecated: Use toolId instead
- id String
- (string, deprecated) - Deprecated: Use toolId instead
- id string
- (string, deprecated) - Deprecated: Use toolId instead
- id str
- (string, deprecated) - Deprecated: Use toolId instead
- id String
- (string, deprecated) - Deprecated: Use toolId instead
SupervisorAgentToolKnowledgeAssistant, SupervisorAgentToolKnowledgeAssistantArgs
- Knowledge
Assistant stringId - The ID of the knowledge assistant
- Serving
Endpoint stringName - Deprecated: use knowledgeAssistantId instead
- Knowledge
Assistant stringId - The ID of the knowledge assistant
- Serving
Endpoint stringName - Deprecated: use knowledgeAssistantId instead
- knowledge_
assistant_ stringid - The ID of the knowledge assistant
- serving_
endpoint_ stringname - Deprecated: use knowledgeAssistantId instead
- knowledge
Assistant StringId - The ID of the knowledge assistant
- serving
Endpoint StringName - Deprecated: use knowledgeAssistantId instead
- knowledge
Assistant stringId - The ID of the knowledge assistant
- serving
Endpoint stringName - Deprecated: use knowledgeAssistantId instead
- knowledge_
assistant_ strid - The ID of the knowledge assistant
- serving_
endpoint_ strname - Deprecated: use knowledgeAssistantId instead
- knowledge
Assistant StringId - The ID of the knowledge assistant
- serving
Endpoint StringName - Deprecated: use knowledgeAssistantId instead
SupervisorAgentToolProviderConfig, SupervisorAgentToolProviderConfigArgs
- 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 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.
SupervisorAgentToolUcConnection, SupervisorAgentToolUcConnectionArgs
- Name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- Name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name String
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name str
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name String
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
SupervisorAgentToolUcFunction, SupervisorAgentToolUcFunctionArgs
- Name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- Name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name String
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name string
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name str
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
- name String
- (string) - Full resource name: supervisor-agents/{supervisor_agent_id}/tools/{tool_id}
SupervisorAgentToolVolume, SupervisorAgentToolVolumeArgs
- Name string
- Full uc volume name
- Name string
- Full uc volume name
- name string
- Full uc volume name
- name String
- Full uc volume name
- name string
- Full uc volume name
- name str
- Full uc volume name
- name String
- Full uc volume name
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Tuesday, May 12, 2026 by Pulumi