1. Packages
  2. Databricks Provider
  3. API Docs
  4. OnlineTable
Databricks v1.67.0 published on Thursday, Apr 17, 2025 by Pulumi

databricks.OnlineTable

Explore with Pulumi AI

This resource can only be used on a Unity Catalog-enabled workspace!

This resource allows you to create Online Table in Databricks. An online table is a read-only copy of a Delta Table that is stored in row-oriented format optimized for online access. Online tables are fully serverless tables that auto-scale throughput capacity with the request load and provide low latency and high throughput access to data of any scale. Online tables are designed to work with Databricks Model Serving, Feature Serving, and retrieval-augmented generation (RAG) applications where they are used for fast data lookups.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";

const _this = new databricks.OnlineTable("this", {
    name: "main.default.online_table",
    spec: {
        sourceTableFullName: "main.default.source_table",
        primaryKeyColumns: ["id"],
        runTriggered: {},
    },
});
Copy
import pulumi
import pulumi_databricks as databricks

this = databricks.OnlineTable("this",
    name="main.default.online_table",
    spec={
        "source_table_full_name": "main.default.source_table",
        "primary_key_columns": ["id"],
        "run_triggered": {},
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databricks.NewOnlineTable(ctx, "this", &databricks.OnlineTableArgs{
			Name: pulumi.String("main.default.online_table"),
			Spec: &databricks.OnlineTableSpecArgs{
				SourceTableFullName: pulumi.String("main.default.source_table"),
				PrimaryKeyColumns: pulumi.StringArray{
					pulumi.String("id"),
				},
				RunTriggered: &databricks.OnlineTableSpecRunTriggeredArgs{},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Databricks = Pulumi.Databricks;

return await Deployment.RunAsync(() => 
{
    var @this = new Databricks.OnlineTable("this", new()
    {
        Name = "main.default.online_table",
        Spec = new Databricks.Inputs.OnlineTableSpecArgs
        {
            SourceTableFullName = "main.default.source_table",
            PrimaryKeyColumns = new[]
            {
                "id",
            },
            RunTriggered = null,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.OnlineTable;
import com.pulumi.databricks.OnlineTableArgs;
import com.pulumi.databricks.inputs.OnlineTableSpecArgs;
import com.pulumi.databricks.inputs.OnlineTableSpecRunTriggeredArgs;
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 this_ = new OnlineTable("this", OnlineTableArgs.builder()
            .name("main.default.online_table")
            .spec(OnlineTableSpecArgs.builder()
                .sourceTableFullName("main.default.source_table")
                .primaryKeyColumns("id")
                .runTriggered(OnlineTableSpecRunTriggeredArgs.builder()
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  this:
    type: databricks:OnlineTable
    properties:
      name: main.default.online_table
      spec:
        sourceTableFullName: main.default.source_table
        primaryKeyColumns:
          - id
        runTriggered: {}
Copy

Create OnlineTable Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OnlineTable(name: string, args?: OnlineTableArgs, opts?: CustomResourceOptions);
@overload
def OnlineTable(resource_name: str,
                args: Optional[OnlineTableArgs] = None,
                opts: Optional[ResourceOptions] = None)

@overload
def OnlineTable(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                name: Optional[str] = None,
                spec: Optional[OnlineTableSpecArgs] = None)
func NewOnlineTable(ctx *Context, name string, args *OnlineTableArgs, opts ...ResourceOption) (*OnlineTable, error)
public OnlineTable(string name, OnlineTableArgs? args = null, CustomResourceOptions? opts = null)
public OnlineTable(String name, OnlineTableArgs args)
public OnlineTable(String name, OnlineTableArgs args, CustomResourceOptions options)
type: databricks:OnlineTable
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args OnlineTableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args OnlineTableArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args OnlineTableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args OnlineTableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OnlineTableArgs
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 onlineTableResource = new Databricks.OnlineTable("onlineTableResource", new()
{
    Name = "string",
    Spec = new Databricks.Inputs.OnlineTableSpecArgs
    {
        PerformFullCopy = false,
        PipelineId = "string",
        PrimaryKeyColumns = new[]
        {
            "string",
        },
        RunContinuously = null,
        RunTriggered = null,
        SourceTableFullName = "string",
        TimeseriesKey = "string",
    },
});
Copy
example, err := databricks.NewOnlineTable(ctx, "onlineTableResource", &databricks.OnlineTableArgs{
	Name: pulumi.String("string"),
	Spec: &databricks.OnlineTableSpecArgs{
		PerformFullCopy: pulumi.Bool(false),
		PipelineId:      pulumi.String("string"),
		PrimaryKeyColumns: pulumi.StringArray{
			pulumi.String("string"),
		},
		RunContinuously:     &databricks.OnlineTableSpecRunContinuouslyArgs{},
		RunTriggered:        &databricks.OnlineTableSpecRunTriggeredArgs{},
		SourceTableFullName: pulumi.String("string"),
		TimeseriesKey:       pulumi.String("string"),
	},
})
Copy
var onlineTableResource = new OnlineTable("onlineTableResource", OnlineTableArgs.builder()
    .name("string")
    .spec(OnlineTableSpecArgs.builder()
        .performFullCopy(false)
        .pipelineId("string")
        .primaryKeyColumns("string")
        .runContinuously()
        .runTriggered()
        .sourceTableFullName("string")
        .timeseriesKey("string")
        .build())
    .build());
Copy
online_table_resource = databricks.OnlineTable("onlineTableResource",
    name="string",
    spec={
        "perform_full_copy": False,
        "pipeline_id": "string",
        "primary_key_columns": ["string"],
        "run_continuously": {},
        "run_triggered": {},
        "source_table_full_name": "string",
        "timeseries_key": "string",
    })
Copy
const onlineTableResource = new databricks.OnlineTable("onlineTableResource", {
    name: "string",
    spec: {
        performFullCopy: false,
        pipelineId: "string",
        primaryKeyColumns: ["string"],
        runContinuously: {},
        runTriggered: {},
        sourceTableFullName: "string",
        timeseriesKey: "string",
    },
});
Copy
type: databricks:OnlineTable
properties:
    name: string
    spec:
        performFullCopy: false
        pipelineId: string
        primaryKeyColumns:
            - string
        runContinuously: {}
        runTriggered: {}
        sourceTableFullName: string
        timeseriesKey: string
Copy

OnlineTable 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 OnlineTable resource accepts the following input properties:

Name Changes to this property will trigger replacement. string
3-level name of the Online Table to create.
Spec Changes to this property will trigger replacement. OnlineTableSpec
object containing specification of the online table:
Name Changes to this property will trigger replacement. string
3-level name of the Online Table to create.
Spec Changes to this property will trigger replacement. OnlineTableSpecArgs
object containing specification of the online table:
name Changes to this property will trigger replacement. String
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. OnlineTableSpec
object containing specification of the online table:
name Changes to this property will trigger replacement. string
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. OnlineTableSpec
object containing specification of the online table:
name Changes to this property will trigger replacement. str
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. OnlineTableSpecArgs
object containing specification of the online table:
name Changes to this property will trigger replacement. String
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. Property Map
object containing specification of the online table:

Outputs

All input properties are implicitly available as output properties. Additionally, the OnlineTable resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Statuses List<OnlineTableStatus>
object describing status of the online table:
TableServingUrl string
Data serving REST API URL for this table.
UnityCatalogProvisioningState string
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
Id string
The provider-assigned unique ID for this managed resource.
Statuses []OnlineTableStatus
object describing status of the online table:
TableServingUrl string
Data serving REST API URL for this table.
UnityCatalogProvisioningState string
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
id String
The provider-assigned unique ID for this managed resource.
statuses List<OnlineTableStatus>
object describing status of the online table:
tableServingUrl String
Data serving REST API URL for this table.
unityCatalogProvisioningState String
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
id string
The provider-assigned unique ID for this managed resource.
statuses OnlineTableStatus[]
object describing status of the online table:
tableServingUrl string
Data serving REST API URL for this table.
unityCatalogProvisioningState string
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
id str
The provider-assigned unique ID for this managed resource.
statuses Sequence[OnlineTableStatus]
object describing status of the online table:
table_serving_url str
Data serving REST API URL for this table.
unity_catalog_provisioning_state str
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
id String
The provider-assigned unique ID for this managed resource.
statuses List<Property Map>
object describing status of the online table:
tableServingUrl String
Data serving REST API URL for this table.
unityCatalogProvisioningState String
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).

Look up Existing OnlineTable Resource

Get an existing OnlineTable 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?: OnlineTableState, opts?: CustomResourceOptions): OnlineTable
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        name: Optional[str] = None,
        spec: Optional[OnlineTableSpecArgs] = None,
        statuses: Optional[Sequence[OnlineTableStatusArgs]] = None,
        table_serving_url: Optional[str] = None,
        unity_catalog_provisioning_state: Optional[str] = None) -> OnlineTable
func GetOnlineTable(ctx *Context, name string, id IDInput, state *OnlineTableState, opts ...ResourceOption) (*OnlineTable, error)
public static OnlineTable Get(string name, Input<string> id, OnlineTableState? state, CustomResourceOptions? opts = null)
public static OnlineTable get(String name, Output<String> id, OnlineTableState state, CustomResourceOptions options)
resources:  _:    type: databricks:OnlineTable    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Name Changes to this property will trigger replacement. string
3-level name of the Online Table to create.
Spec Changes to this property will trigger replacement. OnlineTableSpec
object containing specification of the online table:
Statuses List<OnlineTableStatus>
object describing status of the online table:
TableServingUrl string
Data serving REST API URL for this table.
UnityCatalogProvisioningState string
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
Name Changes to this property will trigger replacement. string
3-level name of the Online Table to create.
Spec Changes to this property will trigger replacement. OnlineTableSpecArgs
object containing specification of the online table:
Statuses []OnlineTableStatusArgs
object describing status of the online table:
TableServingUrl string
Data serving REST API URL for this table.
UnityCatalogProvisioningState string
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
name Changes to this property will trigger replacement. String
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. OnlineTableSpec
object containing specification of the online table:
statuses List<OnlineTableStatus>
object describing status of the online table:
tableServingUrl String
Data serving REST API URL for this table.
unityCatalogProvisioningState String
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
name Changes to this property will trigger replacement. string
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. OnlineTableSpec
object containing specification of the online table:
statuses OnlineTableStatus[]
object describing status of the online table:
tableServingUrl string
Data serving REST API URL for this table.
unityCatalogProvisioningState string
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
name Changes to this property will trigger replacement. str
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. OnlineTableSpecArgs
object containing specification of the online table:
statuses Sequence[OnlineTableStatusArgs]
object describing status of the online table:
table_serving_url str
Data serving REST API URL for this table.
unity_catalog_provisioning_state str
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).
name Changes to this property will trigger replacement. String
3-level name of the Online Table to create.
spec Changes to this property will trigger replacement. Property Map
object containing specification of the online table:
statuses List<Property Map>
object describing status of the online table:
tableServingUrl String
Data serving REST API URL for this table.
unityCatalogProvisioningState String
The provisioning state of the online table entity in Unity Catalog. This is distinct from the state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline may be in "PROVISIONING" as it runs asynchronously).

Supporting Types

OnlineTableSpec
, OnlineTableSpecArgs

PerformFullCopy Changes to this property will trigger replacement. bool
Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
PipelineId string
ID of the associated Delta Live Table pipeline.
PrimaryKeyColumns Changes to this property will trigger replacement. List<string>
list of the columns comprising the primary key.
RunContinuously Changes to this property will trigger replacement. OnlineTableSpecRunContinuously
empty block that specifies that pipeline runs continuously after generating the initial data. Conflicts with run_triggered.
RunTriggered Changes to this property will trigger replacement. OnlineTableSpecRunTriggered
empty block that specifies that pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers).
SourceTableFullName Changes to this property will trigger replacement. string
full name of the source table.
TimeseriesKey Changes to this property will trigger replacement. string
Time series key to deduplicate (tie-break) rows with the same primary key.
PerformFullCopy Changes to this property will trigger replacement. bool
Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
PipelineId string
ID of the associated Delta Live Table pipeline.
PrimaryKeyColumns Changes to this property will trigger replacement. []string
list of the columns comprising the primary key.
RunContinuously Changes to this property will trigger replacement. OnlineTableSpecRunContinuously
empty block that specifies that pipeline runs continuously after generating the initial data. Conflicts with run_triggered.
RunTriggered Changes to this property will trigger replacement. OnlineTableSpecRunTriggered
empty block that specifies that pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers).
SourceTableFullName Changes to this property will trigger replacement. string
full name of the source table.
TimeseriesKey Changes to this property will trigger replacement. string
Time series key to deduplicate (tie-break) rows with the same primary key.
performFullCopy Changes to this property will trigger replacement. Boolean
Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
pipelineId String
ID of the associated Delta Live Table pipeline.
primaryKeyColumns Changes to this property will trigger replacement. List<String>
list of the columns comprising the primary key.
runContinuously Changes to this property will trigger replacement. OnlineTableSpecRunContinuously
empty block that specifies that pipeline runs continuously after generating the initial data. Conflicts with run_triggered.
runTriggered Changes to this property will trigger replacement. OnlineTableSpecRunTriggered
empty block that specifies that pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers).
sourceTableFullName Changes to this property will trigger replacement. String
full name of the source table.
timeseriesKey Changes to this property will trigger replacement. String
Time series key to deduplicate (tie-break) rows with the same primary key.
performFullCopy Changes to this property will trigger replacement. boolean
Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
pipelineId string
ID of the associated Delta Live Table pipeline.
primaryKeyColumns Changes to this property will trigger replacement. string[]
list of the columns comprising the primary key.
runContinuously Changes to this property will trigger replacement. OnlineTableSpecRunContinuously
empty block that specifies that pipeline runs continuously after generating the initial data. Conflicts with run_triggered.
runTriggered Changes to this property will trigger replacement. OnlineTableSpecRunTriggered
empty block that specifies that pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers).
sourceTableFullName Changes to this property will trigger replacement. string
full name of the source table.
timeseriesKey Changes to this property will trigger replacement. string
Time series key to deduplicate (tie-break) rows with the same primary key.
perform_full_copy Changes to this property will trigger replacement. bool
Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
pipeline_id str
ID of the associated Delta Live Table pipeline.
primary_key_columns Changes to this property will trigger replacement. Sequence[str]
list of the columns comprising the primary key.
run_continuously Changes to this property will trigger replacement. OnlineTableSpecRunContinuously
empty block that specifies that pipeline runs continuously after generating the initial data. Conflicts with run_triggered.
run_triggered Changes to this property will trigger replacement. OnlineTableSpecRunTriggered
empty block that specifies that pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers).
source_table_full_name Changes to this property will trigger replacement. str
full name of the source table.
timeseries_key Changes to this property will trigger replacement. str
Time series key to deduplicate (tie-break) rows with the same primary key.
performFullCopy Changes to this property will trigger replacement. Boolean
Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
pipelineId String
ID of the associated Delta Live Table pipeline.
primaryKeyColumns Changes to this property will trigger replacement. List<String>
list of the columns comprising the primary key.
runContinuously Changes to this property will trigger replacement. Property Map
empty block that specifies that pipeline runs continuously after generating the initial data. Conflicts with run_triggered.
runTriggered Changes to this property will trigger replacement. Property Map
empty block that specifies that pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers).
sourceTableFullName Changes to this property will trigger replacement. String
full name of the source table.
timeseriesKey Changes to this property will trigger replacement. String
Time series key to deduplicate (tie-break) rows with the same primary key.

OnlineTableStatus
, OnlineTableStatusArgs

continuousUpdateStatus Property Map
detailedState String
The state of the online table.
failedStatus Property Map
message String
A text description of the current state of the online table.
provisioningStatus Property Map
triggeredUpdateStatus Property Map

OnlineTableStatusContinuousUpdateStatus
, OnlineTableStatusContinuousUpdateStatusArgs

OnlineTableStatusContinuousUpdateStatusInitialPipelineSyncProgress
, OnlineTableStatusContinuousUpdateStatusInitialPipelineSyncProgressArgs

OnlineTableStatusFailedStatus
, OnlineTableStatusFailedStatusArgs

OnlineTableStatusProvisioningStatus
, OnlineTableStatusProvisioningStatusArgs

OnlineTableStatusProvisioningStatusInitialPipelineSyncProgress
, OnlineTableStatusProvisioningStatusInitialPipelineSyncProgressArgs

OnlineTableStatusTriggeredUpdateStatus
, OnlineTableStatusTriggeredUpdateStatusArgs

OnlineTableStatusTriggeredUpdateStatusTriggeredUpdateProgress
, OnlineTableStatusTriggeredUpdateStatusTriggeredUpdateProgressArgs

Import

The resource can be imported using the name of the Online Table:

bash

$ pulumi import databricks:index/onlineTable:OnlineTable this <endpoint-name>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
databricks pulumi/pulumi-databricks
License
Apache-2.0
Notes
This Pulumi package is based on the databricks Terraform Provider.