1. Packages
  2. Databricks Provider
  3. API Docs
  4. getDatabaseSyncedDatabaseTable
Databricks v1.74.0 published on Thursday, Aug 14, 2025 by Pulumi

databricks.getDatabaseSyncedDatabaseTable

Explore with Pulumi AI

databricks logo
Databricks v1.74.0 published on Thursday, Aug 14, 2025 by Pulumi

    This data source can be used to get a single Synced Database Table.

    Example Usage

    Referring to a Database Instance by name:

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = databricks.getDatabaseSyncedDatabaseTable({
        name: "my_database_catalog.public.synced_table",
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.get_database_synced_database_table(name="my_database_catalog.public.synced_table")
    
    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.LookupDatabaseSyncedDatabaseTable(ctx, &databricks.LookupDatabaseSyncedDatabaseTableArgs{
    			Name: "my_database_catalog.public.synced_table",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Databricks = Pulumi.Databricks;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = Databricks.GetDatabaseSyncedDatabaseTable.Invoke(new()
        {
            Name = "my_database_catalog.public.synced_table",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.DatabricksFunctions;
    import com.pulumi.databricks.inputs.GetDatabaseSyncedDatabaseTableArgs;
    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) {
            final var this = DatabricksFunctions.getDatabaseSyncedDatabaseTable(GetDatabaseSyncedDatabaseTableArgs.builder()
                .name("my_database_catalog.public.synced_table")
                .build());
    
        }
    }
    
    variables:
      this:
        fn::invoke:
          function: databricks:getDatabaseSyncedDatabaseTable
          arguments:
            name: my_database_catalog.public.synced_table
    

    Using getDatabaseSyncedDatabaseTable

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDatabaseSyncedDatabaseTable(args: GetDatabaseSyncedDatabaseTableArgs, opts?: InvokeOptions): Promise<GetDatabaseSyncedDatabaseTableResult>
    function getDatabaseSyncedDatabaseTableOutput(args: GetDatabaseSyncedDatabaseTableOutputArgs, opts?: InvokeOptions): Output<GetDatabaseSyncedDatabaseTableResult>
    def get_database_synced_database_table(database_instance_name: Optional[str] = None,
                                           logical_database_name: Optional[str] = None,
                                           name: Optional[str] = None,
                                           spec: Optional[GetDatabaseSyncedDatabaseTableSpec] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetDatabaseSyncedDatabaseTableResult
    def get_database_synced_database_table_output(database_instance_name: Optional[pulumi.Input[str]] = None,
                                           logical_database_name: Optional[pulumi.Input[str]] = None,
                                           name: Optional[pulumi.Input[str]] = None,
                                           spec: Optional[pulumi.Input[GetDatabaseSyncedDatabaseTableSpecArgs]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseSyncedDatabaseTableResult]
    func LookupDatabaseSyncedDatabaseTable(ctx *Context, args *LookupDatabaseSyncedDatabaseTableArgs, opts ...InvokeOption) (*LookupDatabaseSyncedDatabaseTableResult, error)
    func LookupDatabaseSyncedDatabaseTableOutput(ctx *Context, args *LookupDatabaseSyncedDatabaseTableOutputArgs, opts ...InvokeOption) LookupDatabaseSyncedDatabaseTableResultOutput

    > Note: This function is named LookupDatabaseSyncedDatabaseTable in the Go SDK.

    public static class GetDatabaseSyncedDatabaseTable 
    {
        public static Task<GetDatabaseSyncedDatabaseTableResult> InvokeAsync(GetDatabaseSyncedDatabaseTableArgs args, InvokeOptions? opts = null)
        public static Output<GetDatabaseSyncedDatabaseTableResult> Invoke(GetDatabaseSyncedDatabaseTableInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDatabaseSyncedDatabaseTableResult> getDatabaseSyncedDatabaseTable(GetDatabaseSyncedDatabaseTableArgs args, InvokeOptions options)
    public static Output<GetDatabaseSyncedDatabaseTableResult> getDatabaseSyncedDatabaseTable(GetDatabaseSyncedDatabaseTableArgs args, InvokeOptions options)
    
    fn::invoke:
      function: databricks:index/getDatabaseSyncedDatabaseTable:getDatabaseSyncedDatabaseTable
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    Full three-part (catalog, schema, table) name of the table
    DatabaseInstanceName string
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    LogicalDatabaseName string
    (string) - Target Postgres database object (logical database) name for this table.
    Spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    Name string
    Full three-part (catalog, schema, table) name of the table
    DatabaseInstanceName string
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    LogicalDatabaseName string
    (string) - Target Postgres database object (logical database) name for this table.
    Spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    name String
    Full three-part (catalog, schema, table) name of the table
    databaseInstanceName String
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    logicalDatabaseName String
    (string) - Target Postgres database object (logical database) name for this table.
    spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    name string
    Full three-part (catalog, schema, table) name of the table
    databaseInstanceName string
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    logicalDatabaseName string
    (string) - Target Postgres database object (logical database) name for this table.
    spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    name str
    Full three-part (catalog, schema, table) name of the table
    database_instance_name str
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    logical_database_name str
    (string) - Target Postgres database object (logical database) name for this table.
    spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    name String
    Full three-part (catalog, schema, table) name of the table
    databaseInstanceName String
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    logicalDatabaseName String
    (string) - Target Postgres database object (logical database) name for this table.
    spec Property Map
    (SyncedTableSpec)

    getDatabaseSyncedDatabaseTable Result

    The following output properties are available:

    DataSynchronizationStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatus
    (SyncedTableStatus) - Synced Table data synchronization status
    DatabaseInstanceName string
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    EffectiveDatabaseInstanceName string
    (string) - The name of the database instance that this table is registered to. This field is always returned, and for tables inside database catalogs is inferred database instance associated with the catalog
    EffectiveLogicalDatabaseName string
    (string) - The name of the logical database that this table is registered to
    Id string
    The provider-assigned unique ID for this managed resource.
    LogicalDatabaseName string
    (string) - Target Postgres database object (logical database) name for this table.
    Name string
    (string) - Full three-part (catalog, schema, table) name of the table
    UnityCatalogProvisioningState string
    (string) - The provisioning state of the synced 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). Possible values are: ACTIVE, DEGRADED, DELETING, FAILED, PROVISIONING, UPDATING
    Spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    DataSynchronizationStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatus
    (SyncedTableStatus) - Synced Table data synchronization status
    DatabaseInstanceName string
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    EffectiveDatabaseInstanceName string
    (string) - The name of the database instance that this table is registered to. This field is always returned, and for tables inside database catalogs is inferred database instance associated with the catalog
    EffectiveLogicalDatabaseName string
    (string) - The name of the logical database that this table is registered to
    Id string
    The provider-assigned unique ID for this managed resource.
    LogicalDatabaseName string
    (string) - Target Postgres database object (logical database) name for this table.
    Name string
    (string) - Full three-part (catalog, schema, table) name of the table
    UnityCatalogProvisioningState string
    (string) - The provisioning state of the synced 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). Possible values are: ACTIVE, DEGRADED, DELETING, FAILED, PROVISIONING, UPDATING
    Spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    dataSynchronizationStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatus
    (SyncedTableStatus) - Synced Table data synchronization status
    databaseInstanceName String
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    effectiveDatabaseInstanceName String
    (string) - The name of the database instance that this table is registered to. This field is always returned, and for tables inside database catalogs is inferred database instance associated with the catalog
    effectiveLogicalDatabaseName String
    (string) - The name of the logical database that this table is registered to
    id String
    The provider-assigned unique ID for this managed resource.
    logicalDatabaseName String
    (string) - Target Postgres database object (logical database) name for this table.
    name String
    (string) - Full three-part (catalog, schema, table) name of the table
    unityCatalogProvisioningState String
    (string) - The provisioning state of the synced 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). Possible values are: ACTIVE, DEGRADED, DELETING, FAILED, PROVISIONING, UPDATING
    spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    dataSynchronizationStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatus
    (SyncedTableStatus) - Synced Table data synchronization status
    databaseInstanceName string
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    effectiveDatabaseInstanceName string
    (string) - The name of the database instance that this table is registered to. This field is always returned, and for tables inside database catalogs is inferred database instance associated with the catalog
    effectiveLogicalDatabaseName string
    (string) - The name of the logical database that this table is registered to
    id string
    The provider-assigned unique ID for this managed resource.
    logicalDatabaseName string
    (string) - Target Postgres database object (logical database) name for this table.
    name string
    (string) - Full three-part (catalog, schema, table) name of the table
    unityCatalogProvisioningState string
    (string) - The provisioning state of the synced 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). Possible values are: ACTIVE, DEGRADED, DELETING, FAILED, PROVISIONING, UPDATING
    spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    data_synchronization_status GetDatabaseSyncedDatabaseTableDataSynchronizationStatus
    (SyncedTableStatus) - Synced Table data synchronization status
    database_instance_name str
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    effective_database_instance_name str
    (string) - The name of the database instance that this table is registered to. This field is always returned, and for tables inside database catalogs is inferred database instance associated with the catalog
    effective_logical_database_name str
    (string) - The name of the logical database that this table is registered to
    id str
    The provider-assigned unique ID for this managed resource.
    logical_database_name str
    (string) - Target Postgres database object (logical database) name for this table.
    name str
    (string) - Full three-part (catalog, schema, table) name of the table
    unity_catalog_provisioning_state str
    (string) - The provisioning state of the synced 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). Possible values are: ACTIVE, DEGRADED, DELETING, FAILED, PROVISIONING, UPDATING
    spec GetDatabaseSyncedDatabaseTableSpec
    (SyncedTableSpec)
    dataSynchronizationStatus Property Map
    (SyncedTableStatus) - Synced Table data synchronization status
    databaseInstanceName String
    (string) - Name of the target database instance. This is required when creating synced database tables in standard catalogs. This is optional when creating synced database tables in registered catalogs. If this field is specified when creating synced database tables in registered catalogs, the database instance name MUST match that of the registered catalog (or the request will be rejected)
    effectiveDatabaseInstanceName String
    (string) - The name of the database instance that this table is registered to. This field is always returned, and for tables inside database catalogs is inferred database instance associated with the catalog
    effectiveLogicalDatabaseName String
    (string) - The name of the logical database that this table is registered to
    id String
    The provider-assigned unique ID for this managed resource.
    logicalDatabaseName String
    (string) - Target Postgres database object (logical database) name for this table.
    name String
    (string) - Full three-part (catalog, schema, table) name of the table
    unityCatalogProvisioningState String
    (string) - The provisioning state of the synced 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). Possible values are: ACTIVE, DEGRADED, DELETING, FAILED, PROVISIONING, UPDATING
    spec Property Map
    (SyncedTableSpec)

    Supporting Types

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatus

    DetailedState string
    (string) - The state of the synced table. Possible values are: SYNCED_TABLED_OFFLINE, SYNCED_TABLE_OFFLINE_FAILED, SYNCED_TABLE_ONLINE, SYNCED_TABLE_ONLINE_CONTINUOUS_UPDATE, SYNCED_TABLE_ONLINE_NO_PENDING_UPDATE, SYNCED_TABLE_ONLINE_PIPELINE_FAILED, SYNCED_TABLE_ONLINE_TRIGGERED_UPDATE, SYNCED_TABLE_ONLINE_UPDATING_PIPELINE_RESOURCES, SYNCED_TABLE_PROVISIONING, SYNCED_TABLE_PROVISIONING_INITIAL_SNAPSHOT, SYNCED_TABLE_PROVISIONING_PIPELINE_RESOURCES
    LastSync GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSync
    (SyncedTablePosition) - Summary of the last successful synchronization from source to destination.
    Message string
    (string) - A text description of the current state of the synced table
    PipelineId string
    (string) - ID of the associated pipeline. The pipeline ID may have been provided by the client (in the case of bin packing), or generated by the server (when creating a new pipeline)
    ContinuousUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatus
    (SyncedTableContinuousUpdateStatus)
    FailedStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusFailedStatus
    (SyncedTableFailedStatus)
    ProvisioningStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatus
    (SyncedTableProvisioningStatus)
    TriggeredUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatus
    (SyncedTableTriggeredUpdateStatus)
    DetailedState string
    (string) - The state of the synced table. Possible values are: SYNCED_TABLED_OFFLINE, SYNCED_TABLE_OFFLINE_FAILED, SYNCED_TABLE_ONLINE, SYNCED_TABLE_ONLINE_CONTINUOUS_UPDATE, SYNCED_TABLE_ONLINE_NO_PENDING_UPDATE, SYNCED_TABLE_ONLINE_PIPELINE_FAILED, SYNCED_TABLE_ONLINE_TRIGGERED_UPDATE, SYNCED_TABLE_ONLINE_UPDATING_PIPELINE_RESOURCES, SYNCED_TABLE_PROVISIONING, SYNCED_TABLE_PROVISIONING_INITIAL_SNAPSHOT, SYNCED_TABLE_PROVISIONING_PIPELINE_RESOURCES
    LastSync GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSync
    (SyncedTablePosition) - Summary of the last successful synchronization from source to destination.
    Message string
    (string) - A text description of the current state of the synced table
    PipelineId string
    (string) - ID of the associated pipeline. The pipeline ID may have been provided by the client (in the case of bin packing), or generated by the server (when creating a new pipeline)
    ContinuousUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatus
    (SyncedTableContinuousUpdateStatus)
    FailedStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusFailedStatus
    (SyncedTableFailedStatus)
    ProvisioningStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatus
    (SyncedTableProvisioningStatus)
    TriggeredUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatus
    (SyncedTableTriggeredUpdateStatus)
    detailedState String
    (string) - The state of the synced table. Possible values are: SYNCED_TABLED_OFFLINE, SYNCED_TABLE_OFFLINE_FAILED, SYNCED_TABLE_ONLINE, SYNCED_TABLE_ONLINE_CONTINUOUS_UPDATE, SYNCED_TABLE_ONLINE_NO_PENDING_UPDATE, SYNCED_TABLE_ONLINE_PIPELINE_FAILED, SYNCED_TABLE_ONLINE_TRIGGERED_UPDATE, SYNCED_TABLE_ONLINE_UPDATING_PIPELINE_RESOURCES, SYNCED_TABLE_PROVISIONING, SYNCED_TABLE_PROVISIONING_INITIAL_SNAPSHOT, SYNCED_TABLE_PROVISIONING_PIPELINE_RESOURCES
    lastSync GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSync
    (SyncedTablePosition) - Summary of the last successful synchronization from source to destination.
    message String
    (string) - A text description of the current state of the synced table
    pipelineId String
    (string) - ID of the associated pipeline. The pipeline ID may have been provided by the client (in the case of bin packing), or generated by the server (when creating a new pipeline)
    continuousUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatus
    (SyncedTableContinuousUpdateStatus)
    failedStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusFailedStatus
    (SyncedTableFailedStatus)
    provisioningStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatus
    (SyncedTableProvisioningStatus)
    triggeredUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatus
    (SyncedTableTriggeredUpdateStatus)
    detailedState string
    (string) - The state of the synced table. Possible values are: SYNCED_TABLED_OFFLINE, SYNCED_TABLE_OFFLINE_FAILED, SYNCED_TABLE_ONLINE, SYNCED_TABLE_ONLINE_CONTINUOUS_UPDATE, SYNCED_TABLE_ONLINE_NO_PENDING_UPDATE, SYNCED_TABLE_ONLINE_PIPELINE_FAILED, SYNCED_TABLE_ONLINE_TRIGGERED_UPDATE, SYNCED_TABLE_ONLINE_UPDATING_PIPELINE_RESOURCES, SYNCED_TABLE_PROVISIONING, SYNCED_TABLE_PROVISIONING_INITIAL_SNAPSHOT, SYNCED_TABLE_PROVISIONING_PIPELINE_RESOURCES
    lastSync GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSync
    (SyncedTablePosition) - Summary of the last successful synchronization from source to destination.
    message string
    (string) - A text description of the current state of the synced table
    pipelineId string
    (string) - ID of the associated pipeline. The pipeline ID may have been provided by the client (in the case of bin packing), or generated by the server (when creating a new pipeline)
    continuousUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatus
    (SyncedTableContinuousUpdateStatus)
    failedStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusFailedStatus
    (SyncedTableFailedStatus)
    provisioningStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatus
    (SyncedTableProvisioningStatus)
    triggeredUpdateStatus GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatus
    (SyncedTableTriggeredUpdateStatus)
    detailed_state str
    (string) - The state of the synced table. Possible values are: SYNCED_TABLED_OFFLINE, SYNCED_TABLE_OFFLINE_FAILED, SYNCED_TABLE_ONLINE, SYNCED_TABLE_ONLINE_CONTINUOUS_UPDATE, SYNCED_TABLE_ONLINE_NO_PENDING_UPDATE, SYNCED_TABLE_ONLINE_PIPELINE_FAILED, SYNCED_TABLE_ONLINE_TRIGGERED_UPDATE, SYNCED_TABLE_ONLINE_UPDATING_PIPELINE_RESOURCES, SYNCED_TABLE_PROVISIONING, SYNCED_TABLE_PROVISIONING_INITIAL_SNAPSHOT, SYNCED_TABLE_PROVISIONING_PIPELINE_RESOURCES
    last_sync GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSync
    (SyncedTablePosition) - Summary of the last successful synchronization from source to destination.
    message str
    (string) - A text description of the current state of the synced table
    pipeline_id str
    (string) - ID of the associated pipeline. The pipeline ID may have been provided by the client (in the case of bin packing), or generated by the server (when creating a new pipeline)
    continuous_update_status GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatus
    (SyncedTableContinuousUpdateStatus)
    failed_status GetDatabaseSyncedDatabaseTableDataSynchronizationStatusFailedStatus
    (SyncedTableFailedStatus)
    provisioning_status GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatus
    (SyncedTableProvisioningStatus)
    triggered_update_status GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatus
    (SyncedTableTriggeredUpdateStatus)
    detailedState String
    (string) - The state of the synced table. Possible values are: SYNCED_TABLED_OFFLINE, SYNCED_TABLE_OFFLINE_FAILED, SYNCED_TABLE_ONLINE, SYNCED_TABLE_ONLINE_CONTINUOUS_UPDATE, SYNCED_TABLE_ONLINE_NO_PENDING_UPDATE, SYNCED_TABLE_ONLINE_PIPELINE_FAILED, SYNCED_TABLE_ONLINE_TRIGGERED_UPDATE, SYNCED_TABLE_ONLINE_UPDATING_PIPELINE_RESOURCES, SYNCED_TABLE_PROVISIONING, SYNCED_TABLE_PROVISIONING_INITIAL_SNAPSHOT, SYNCED_TABLE_PROVISIONING_PIPELINE_RESOURCES
    lastSync Property Map
    (SyncedTablePosition) - Summary of the last successful synchronization from source to destination.
    message String
    (string) - A text description of the current state of the synced table
    pipelineId String
    (string) - ID of the associated pipeline. The pipeline ID may have been provided by the client (in the case of bin packing), or generated by the server (when creating a new pipeline)
    continuousUpdateStatus Property Map
    (SyncedTableContinuousUpdateStatus)
    failedStatus Property Map
    (SyncedTableFailedStatus)
    provisioningStatus Property Map
    (SyncedTableProvisioningStatus)
    triggeredUpdateStatus Property Map
    (SyncedTableTriggeredUpdateStatus)

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatus

    InitialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    LastProcessedCommitVersion int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    Timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    InitialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    LastProcessedCommitVersion int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    Timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    initialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    lastProcessedCommitVersion Integer
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp String
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    initialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    lastProcessedCommitVersion number
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    initial_pipeline_sync_progress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    last_processed_commit_version int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp str
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    initialPipelineSyncProgress Property Map
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    lastProcessedCommitVersion Number
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp String
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusContinuousUpdateStatusInitialPipelineSyncProgress

    EstimatedCompletionTimeSeconds double
    (number) - The estimated time remaining to complete this update in seconds
    LatestVersionCurrentlyProcessing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    ProvisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    SyncProgressCompletion double
    (number) - The completion ratio of this update. This is a number between 0 and 1
    SyncedRowCount int
    (integer) - The number of rows that have been synced in this update
    TotalRowCount int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    EstimatedCompletionTimeSeconds float64
    (number) - The estimated time remaining to complete this update in seconds
    LatestVersionCurrentlyProcessing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    ProvisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    SyncProgressCompletion float64
    (number) - The completion ratio of this update. This is a number between 0 and 1
    SyncedRowCount int
    (integer) - The number of rows that have been synced in this update
    TotalRowCount int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds Double
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing Integer
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase String
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion Double
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount Integer
    (integer) - The number of rows that have been synced in this update
    totalRowCount Integer
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds number
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing number
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion number
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount number
    (integer) - The number of rows that have been synced in this update
    totalRowCount number
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimated_completion_time_seconds float
    (number) - The estimated time remaining to complete this update in seconds
    latest_version_currently_processing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioning_phase str
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    sync_progress_completion float
    (number) - The completion ratio of this update. This is a number between 0 and 1
    synced_row_count int
    (integer) - The number of rows that have been synced in this update
    total_row_count int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds Number
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing Number
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase String
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion Number
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount Number
    (integer) - The number of rows that have been synced in this update
    totalRowCount Number
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusFailedStatus

    LastProcessedCommitVersion int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    Timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    LastProcessedCommitVersion int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    Timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    lastProcessedCommitVersion Integer
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp String
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    lastProcessedCommitVersion number
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    last_processed_commit_version int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp str
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    lastProcessedCommitVersion Number
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp String
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSync

    DeltaTableSyncInfo GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSyncDeltaTableSyncInfo
    (DeltaTableSyncInfo)
    SyncEndTimestamp string
    (string) - The end timestamp of the most recent successful synchronization. This is the time when the data is available in the synced table
    SyncStartTimestamp string
    (string) - The starting timestamp of the most recent successful synchronization from the source table to the destination (synced) table. Note this is the starting timestamp of the sync operation, not the end time. E.g., for a batch, this is the time when the sync operation started
    DeltaTableSyncInfo GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSyncDeltaTableSyncInfo
    (DeltaTableSyncInfo)
    SyncEndTimestamp string
    (string) - The end timestamp of the most recent successful synchronization. This is the time when the data is available in the synced table
    SyncStartTimestamp string
    (string) - The starting timestamp of the most recent successful synchronization from the source table to the destination (synced) table. Note this is the starting timestamp of the sync operation, not the end time. E.g., for a batch, this is the time when the sync operation started
    deltaTableSyncInfo GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSyncDeltaTableSyncInfo
    (DeltaTableSyncInfo)
    syncEndTimestamp String
    (string) - The end timestamp of the most recent successful synchronization. This is the time when the data is available in the synced table
    syncStartTimestamp String
    (string) - The starting timestamp of the most recent successful synchronization from the source table to the destination (synced) table. Note this is the starting timestamp of the sync operation, not the end time. E.g., for a batch, this is the time when the sync operation started
    deltaTableSyncInfo GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSyncDeltaTableSyncInfo
    (DeltaTableSyncInfo)
    syncEndTimestamp string
    (string) - The end timestamp of the most recent successful synchronization. This is the time when the data is available in the synced table
    syncStartTimestamp string
    (string) - The starting timestamp of the most recent successful synchronization from the source table to the destination (synced) table. Note this is the starting timestamp of the sync operation, not the end time. E.g., for a batch, this is the time when the sync operation started
    delta_table_sync_info GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSyncDeltaTableSyncInfo
    (DeltaTableSyncInfo)
    sync_end_timestamp str
    (string) - The end timestamp of the most recent successful synchronization. This is the time when the data is available in the synced table
    sync_start_timestamp str
    (string) - The starting timestamp of the most recent successful synchronization from the source table to the destination (synced) table. Note this is the starting timestamp of the sync operation, not the end time. E.g., for a batch, this is the time when the sync operation started
    deltaTableSyncInfo Property Map
    (DeltaTableSyncInfo)
    syncEndTimestamp String
    (string) - The end timestamp of the most recent successful synchronization. This is the time when the data is available in the synced table
    syncStartTimestamp String
    (string) - The starting timestamp of the most recent successful synchronization from the source table to the destination (synced) table. Note this is the starting timestamp of the sync operation, not the end time. E.g., for a batch, this is the time when the sync operation started

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusLastSyncDeltaTableSyncInfo

    DeltaCommitTimestamp string
    (string) - The timestamp when the above Delta version was committed in the source Delta table. Note: This is the Delta commit time, not the time the data was written to the synced table
    DeltaCommitVersion int
    (integer) - The Delta Lake commit version that was last successfully synced
    DeltaCommitTimestamp string
    (string) - The timestamp when the above Delta version was committed in the source Delta table. Note: This is the Delta commit time, not the time the data was written to the synced table
    DeltaCommitVersion int
    (integer) - The Delta Lake commit version that was last successfully synced
    deltaCommitTimestamp String
    (string) - The timestamp when the above Delta version was committed in the source Delta table. Note: This is the Delta commit time, not the time the data was written to the synced table
    deltaCommitVersion Integer
    (integer) - The Delta Lake commit version that was last successfully synced
    deltaCommitTimestamp string
    (string) - The timestamp when the above Delta version was committed in the source Delta table. Note: This is the Delta commit time, not the time the data was written to the synced table
    deltaCommitVersion number
    (integer) - The Delta Lake commit version that was last successfully synced
    delta_commit_timestamp str
    (string) - The timestamp when the above Delta version was committed in the source Delta table. Note: This is the Delta commit time, not the time the data was written to the synced table
    delta_commit_version int
    (integer) - The Delta Lake commit version that was last successfully synced
    deltaCommitTimestamp String
    (string) - The timestamp when the above Delta version was committed in the source Delta table. Note: This is the Delta commit time, not the time the data was written to the synced table
    deltaCommitVersion Number
    (integer) - The Delta Lake commit version that was last successfully synced

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatus

    InitialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    InitialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    initialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    initialPipelineSyncProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    initial_pipeline_sync_progress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatusInitialPipelineSyncProgress
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state
    initialPipelineSyncProgress Property Map
    (SyncedTablePipelineProgress) - Details about initial data synchronization. Only populated when in the PROVISIONING_INITIAL_SNAPSHOT state

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusProvisioningStatusInitialPipelineSyncProgress

    EstimatedCompletionTimeSeconds double
    (number) - The estimated time remaining to complete this update in seconds
    LatestVersionCurrentlyProcessing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    ProvisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    SyncProgressCompletion double
    (number) - The completion ratio of this update. This is a number between 0 and 1
    SyncedRowCount int
    (integer) - The number of rows that have been synced in this update
    TotalRowCount int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    EstimatedCompletionTimeSeconds float64
    (number) - The estimated time remaining to complete this update in seconds
    LatestVersionCurrentlyProcessing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    ProvisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    SyncProgressCompletion float64
    (number) - The completion ratio of this update. This is a number between 0 and 1
    SyncedRowCount int
    (integer) - The number of rows that have been synced in this update
    TotalRowCount int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds Double
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing Integer
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase String
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion Double
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount Integer
    (integer) - The number of rows that have been synced in this update
    totalRowCount Integer
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds number
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing number
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion number
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount number
    (integer) - The number of rows that have been synced in this update
    totalRowCount number
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimated_completion_time_seconds float
    (number) - The estimated time remaining to complete this update in seconds
    latest_version_currently_processing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioning_phase str
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    sync_progress_completion float
    (number) - The completion ratio of this update. This is a number between 0 and 1
    synced_row_count int
    (integer) - The number of rows that have been synced in this update
    total_row_count int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds Number
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing Number
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase String
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion Number
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount Number
    (integer) - The number of rows that have been synced in this update
    totalRowCount Number
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatus

    LastProcessedCommitVersion int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    Timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    TriggeredUpdateProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatusTriggeredUpdateProgress
    (SyncedTablePipelineProgress) - Progress of the active data synchronization pipeline
    LastProcessedCommitVersion int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    Timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    TriggeredUpdateProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatusTriggeredUpdateProgress
    (SyncedTablePipelineProgress) - Progress of the active data synchronization pipeline
    lastProcessedCommitVersion Integer
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp String
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    triggeredUpdateProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatusTriggeredUpdateProgress
    (SyncedTablePipelineProgress) - Progress of the active data synchronization pipeline
    lastProcessedCommitVersion number
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp string
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    triggeredUpdateProgress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatusTriggeredUpdateProgress
    (SyncedTablePipelineProgress) - Progress of the active data synchronization pipeline
    last_processed_commit_version int
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp str
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    triggered_update_progress GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatusTriggeredUpdateProgress
    (SyncedTablePipelineProgress) - Progress of the active data synchronization pipeline
    lastProcessedCommitVersion Number
    (integer) - The last source table Delta version that was successfully synced to the synced table
    timestamp String
    (string) - The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table
    triggeredUpdateProgress Property Map
    (SyncedTablePipelineProgress) - Progress of the active data synchronization pipeline

    GetDatabaseSyncedDatabaseTableDataSynchronizationStatusTriggeredUpdateStatusTriggeredUpdateProgress

    EstimatedCompletionTimeSeconds double
    (number) - The estimated time remaining to complete this update in seconds
    LatestVersionCurrentlyProcessing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    ProvisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    SyncProgressCompletion double
    (number) - The completion ratio of this update. This is a number between 0 and 1
    SyncedRowCount int
    (integer) - The number of rows that have been synced in this update
    TotalRowCount int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    EstimatedCompletionTimeSeconds float64
    (number) - The estimated time remaining to complete this update in seconds
    LatestVersionCurrentlyProcessing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    ProvisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    SyncProgressCompletion float64
    (number) - The completion ratio of this update. This is a number between 0 and 1
    SyncedRowCount int
    (integer) - The number of rows that have been synced in this update
    TotalRowCount int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds Double
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing Integer
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase String
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion Double
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount Integer
    (integer) - The number of rows that have been synced in this update
    totalRowCount Integer
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds number
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing number
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase string
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion number
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount number
    (integer) - The number of rows that have been synced in this update
    totalRowCount number
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimated_completion_time_seconds float
    (number) - The estimated time remaining to complete this update in seconds
    latest_version_currently_processing int
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioning_phase str
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    sync_progress_completion float
    (number) - The completion ratio of this update. This is a number between 0 and 1
    synced_row_count int
    (integer) - The number of rows that have been synced in this update
    total_row_count int
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate
    estimatedCompletionTimeSeconds Number
    (number) - The estimated time remaining to complete this update in seconds
    latestVersionCurrentlyProcessing Number
    (integer) - The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet
    provisioningPhase String
    (string) - The current phase of the data synchronization pipeline. Possible values are: PROVISIONING_PHASE_INDEX_SCAN, PROVISIONING_PHASE_INDEX_SORT, PROVISIONING_PHASE_MAIN
    syncProgressCompletion Number
    (number) - The completion ratio of this update. This is a number between 0 and 1
    syncedRowCount Number
    (integer) - The number of rows that have been synced in this update
    totalRowCount Number
    (integer) - The total number of rows that need to be synced in this update. This number may be an estimate

    GetDatabaseSyncedDatabaseTableSpec

    CreateDatabaseObjectsIfMissing bool
    (boolean) - If true, the synced table's logical database and schema resources in PG will be created if they do not already exist
    ExistingPipelineId string
    (string) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    NewPipelineSpec GetDatabaseSyncedDatabaseTableSpecNewPipelineSpec
    (NewPipelineSpec) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    PrimaryKeyColumns List<string>
    (list of string) - Primary Key columns to be used for data insert/update in the destination
    SchedulingPolicy string
    (string) - Scheduling policy of the underlying pipeline. Possible values are: CONTINUOUS, SNAPSHOT, TRIGGERED
    SourceTableFullName string
    (string) - Three-part (catalog, schema, table) name of the source Delta table
    TimeseriesKey string
    (string) - Time series key to deduplicate (tie-break) rows with the same primary key
    CreateDatabaseObjectsIfMissing bool
    (boolean) - If true, the synced table's logical database and schema resources in PG will be created if they do not already exist
    ExistingPipelineId string
    (string) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    NewPipelineSpec GetDatabaseSyncedDatabaseTableSpecNewPipelineSpec
    (NewPipelineSpec) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    PrimaryKeyColumns []string
    (list of string) - Primary Key columns to be used for data insert/update in the destination
    SchedulingPolicy string
    (string) - Scheduling policy of the underlying pipeline. Possible values are: CONTINUOUS, SNAPSHOT, TRIGGERED
    SourceTableFullName string
    (string) - Three-part (catalog, schema, table) name of the source Delta table
    TimeseriesKey string
    (string) - Time series key to deduplicate (tie-break) rows with the same primary key
    createDatabaseObjectsIfMissing Boolean
    (boolean) - If true, the synced table's logical database and schema resources in PG will be created if they do not already exist
    existingPipelineId String
    (string) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    newPipelineSpec GetDatabaseSyncedDatabaseTableSpecNewPipelineSpec
    (NewPipelineSpec) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    primaryKeyColumns List<String>
    (list of string) - Primary Key columns to be used for data insert/update in the destination
    schedulingPolicy String
    (string) - Scheduling policy of the underlying pipeline. Possible values are: CONTINUOUS, SNAPSHOT, TRIGGERED
    sourceTableFullName String
    (string) - Three-part (catalog, schema, table) name of the source Delta table
    timeseriesKey String
    (string) - Time series key to deduplicate (tie-break) rows with the same primary key
    createDatabaseObjectsIfMissing boolean
    (boolean) - If true, the synced table's logical database and schema resources in PG will be created if they do not already exist
    existingPipelineId string
    (string) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    newPipelineSpec GetDatabaseSyncedDatabaseTableSpecNewPipelineSpec
    (NewPipelineSpec) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    primaryKeyColumns string[]
    (list of string) - Primary Key columns to be used for data insert/update in the destination
    schedulingPolicy string
    (string) - Scheduling policy of the underlying pipeline. Possible values are: CONTINUOUS, SNAPSHOT, TRIGGERED
    sourceTableFullName string
    (string) - Three-part (catalog, schema, table) name of the source Delta table
    timeseriesKey string
    (string) - Time series key to deduplicate (tie-break) rows with the same primary key
    create_database_objects_if_missing bool
    (boolean) - If true, the synced table's logical database and schema resources in PG will be created if they do not already exist
    existing_pipeline_id str
    (string) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    new_pipeline_spec GetDatabaseSyncedDatabaseTableSpecNewPipelineSpec
    (NewPipelineSpec) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    primary_key_columns Sequence[str]
    (list of string) - Primary Key columns to be used for data insert/update in the destination
    scheduling_policy str
    (string) - Scheduling policy of the underlying pipeline. Possible values are: CONTINUOUS, SNAPSHOT, TRIGGERED
    source_table_full_name str
    (string) - Three-part (catalog, schema, table) name of the source Delta table
    timeseries_key str
    (string) - Time series key to deduplicate (tie-break) rows with the same primary key
    createDatabaseObjectsIfMissing Boolean
    (boolean) - If true, the synced table's logical database and schema resources in PG will be created if they do not already exist
    existingPipelineId String
    (string) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    newPipelineSpec Property Map
    (NewPipelineSpec) - At most one of existing_pipeline_id and new_pipeline_spec should be defined.
    primaryKeyColumns List<String>
    (list of string) - Primary Key columns to be used for data insert/update in the destination
    schedulingPolicy String
    (string) - Scheduling policy of the underlying pipeline. Possible values are: CONTINUOUS, SNAPSHOT, TRIGGERED
    sourceTableFullName String
    (string) - Three-part (catalog, schema, table) name of the source Delta table
    timeseriesKey String
    (string) - Time series key to deduplicate (tie-break) rows with the same primary key

    GetDatabaseSyncedDatabaseTableSpecNewPipelineSpec

    StorageCatalog string
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    StorageSchema string
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    StorageCatalog string
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    StorageSchema string
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storageCatalog String
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storageSchema String
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storageCatalog string
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storageSchema string
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storage_catalog str
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storage_schema str
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storageCatalog String
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.
    storageSchema String
    (string) - This field needs to be specified if the destination catalog is a managed postgres catalog.

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Databricks v1.74.0 published on Thursday, Aug 14, 2025 by Pulumi