1. Packages
  2. Fivetran Provider
  3. API Docs
  4. getConnection
fivetran 1.8.1 published on Wednesday, May 28, 2025 by fivetran

fivetran.getConnection

Explore with Pulumi AI

fivetran logo
fivetran 1.8.1 published on Wednesday, May 28, 2025 by fivetran

    This data source returns a connection object.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const connection = fivetran.getConnection({
        id: "anonymous_mystery",
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    connection = fivetran.get_connection(id="anonymous_mystery")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fivetran/fivetran"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fivetran.GetConnection(ctx, &fivetran.GetConnectionArgs{
    			Id: "anonymous_mystery",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fivetran = Pulumi.Fivetran;
    
    return await Deployment.RunAsync(() => 
    {
        var connection = Fivetran.GetConnection.Invoke(new()
        {
            Id = "anonymous_mystery",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.FivetranFunctions;
    import com.pulumi.fivetran.inputs.GetConnectionArgs;
    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 connection = FivetranFunctions.getConnection(GetConnectionArgs.builder()
                .id("anonymous_mystery")
                .build());
    
        }
    }
    
    variables:
      connection:
        fn::invoke:
          function: fivetran:getConnection
          arguments:
            id: anonymous_mystery
    

    Using getConnection

    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 getConnection(args: GetConnectionArgs, opts?: InvokeOptions): Promise<GetConnectionResult>
    function getConnectionOutput(args: GetConnectionOutputArgs, opts?: InvokeOptions): Output<GetConnectionResult>
    def get_connection(destination_schema: Optional[GetConnectionDestinationSchema] = None,
                       id: Optional[str] = None,
                       status: Optional[GetConnectionStatus] = None,
                       opts: Optional[InvokeOptions] = None) -> GetConnectionResult
    def get_connection_output(destination_schema: Optional[pulumi.Input[GetConnectionDestinationSchemaArgs]] = None,
                       id: Optional[pulumi.Input[str]] = None,
                       status: Optional[pulumi.Input[GetConnectionStatusArgs]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetConnectionResult]
    func GetConnection(ctx *Context, args *GetConnectionArgs, opts ...InvokeOption) (*GetConnectionResult, error)
    func GetConnectionOutput(ctx *Context, args *GetConnectionOutputArgs, opts ...InvokeOption) GetConnectionResultOutput

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

    public static class GetConnection 
    {
        public static Task<GetConnectionResult> InvokeAsync(GetConnectionArgs args, InvokeOptions? opts = null)
        public static Output<GetConnectionResult> Invoke(GetConnectionInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetConnectionResult> getConnection(GetConnectionArgs args, InvokeOptions options)
    public static Output<GetConnectionResult> getConnection(GetConnectionArgs args, InvokeOptions options)
    
    fn::invoke:
      function: fivetran:index/getConnection:getConnection
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The unique identifier for the connection within the Fivetran system.
    DestinationSchema GetConnectionDestinationSchema
    Status GetConnectionStatus
    Id string
    The unique identifier for the connection within the Fivetran system.
    DestinationSchema GetConnectionDestinationSchema
    Status GetConnectionStatus
    id String
    The unique identifier for the connection within the Fivetran system.
    destinationSchema GetConnectionDestinationSchema
    status GetConnectionStatus
    id string
    The unique identifier for the connection within the Fivetran system.
    destinationSchema GetConnectionDestinationSchema
    status GetConnectionStatus
    id str
    The unique identifier for the connection within the Fivetran system.
    destination_schema GetConnectionDestinationSchema
    status GetConnectionStatus
    id String
    The unique identifier for the connection within the Fivetran system.
    destinationSchema Property Map
    status Property Map

    getConnection Result

    The following output properties are available:

    ConnectedBy string
    The unique identifier of the user who has created the connection in your account.
    CreatedAt string
    The timestamp of the time the connection was created in your account.
    DailySyncTime string
    The optional parameter that defines the sync start time when the sync frequency is already set or being set by the current request to 1440. It can be specified in one hour increments starting from 00:00 to 23:00. If not specified, we will use the baseline sync start time. This parameter has no effect on the 0 to 60 minutes offset used to determine the actual sync start time.
    DataDelaySensitivity string
    The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL. CUSTOM is only available for customers using the Enterprise plan or above.
    DataDelayThreshold double
    Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when datadelaysensitivity set to CUSTOM.
    FailedAt string
    The timestamp of the time the connection sync failed last time.
    GroupId string
    The unique identifier for the Group (Destination) within the Fivetran system.
    HybridDeploymentAgentId string
    The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
    Id string
    The unique identifier for the connection within the Fivetran system.
    Name string
    The name used both as the connection's name within the Fivetran system and as the source schema's name within your destination.
    NetworkingMethod string
    Possible values: Directly, SshTunnel, ProxyAgent.
    PauseAfterTrial bool
    Specifies whether the connection should be paused after the free trial period has ended.
    Paused bool
    Specifies whether the connection is paused.
    PrivateLinkId string
    The private link ID.
    ProxyAgentId string
    The proxy agent ID.
    ScheduleType string
    The connection schedule configuration type. Supported values: auto, manual.
    Service string
    The connector type id within the Fivetran system.
    ServiceVersion string
    The connector type version within the Fivetran system.
    SucceededAt string
    The timestamp of the time the connection sync succeeded last time.
    SyncFrequency double
    The connection sync frequency in minutes.
    DestinationSchema GetConnectionDestinationSchema
    Status GetConnectionStatus
    ConnectedBy string
    The unique identifier of the user who has created the connection in your account.
    CreatedAt string
    The timestamp of the time the connection was created in your account.
    DailySyncTime string
    The optional parameter that defines the sync start time when the sync frequency is already set or being set by the current request to 1440. It can be specified in one hour increments starting from 00:00 to 23:00. If not specified, we will use the baseline sync start time. This parameter has no effect on the 0 to 60 minutes offset used to determine the actual sync start time.
    DataDelaySensitivity string
    The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL. CUSTOM is only available for customers using the Enterprise plan or above.
    DataDelayThreshold float64
    Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when datadelaysensitivity set to CUSTOM.
    FailedAt string
    The timestamp of the time the connection sync failed last time.
    GroupId string
    The unique identifier for the Group (Destination) within the Fivetran system.
    HybridDeploymentAgentId string
    The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
    Id string
    The unique identifier for the connection within the Fivetran system.
    Name string
    The name used both as the connection's name within the Fivetran system and as the source schema's name within your destination.
    NetworkingMethod string
    Possible values: Directly, SshTunnel, ProxyAgent.
    PauseAfterTrial bool
    Specifies whether the connection should be paused after the free trial period has ended.
    Paused bool
    Specifies whether the connection is paused.
    PrivateLinkId string
    The private link ID.
    ProxyAgentId string
    The proxy agent ID.
    ScheduleType string
    The connection schedule configuration type. Supported values: auto, manual.
    Service string
    The connector type id within the Fivetran system.
    ServiceVersion string
    The connector type version within the Fivetran system.
    SucceededAt string
    The timestamp of the time the connection sync succeeded last time.
    SyncFrequency float64
    The connection sync frequency in minutes.
    DestinationSchema GetConnectionDestinationSchema
    Status GetConnectionStatus
    connectedBy String
    The unique identifier of the user who has created the connection in your account.
    createdAt String
    The timestamp of the time the connection was created in your account.
    dailySyncTime String
    The optional parameter that defines the sync start time when the sync frequency is already set or being set by the current request to 1440. It can be specified in one hour increments starting from 00:00 to 23:00. If not specified, we will use the baseline sync start time. This parameter has no effect on the 0 to 60 minutes offset used to determine the actual sync start time.
    dataDelaySensitivity String
    The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL. CUSTOM is only available for customers using the Enterprise plan or above.
    dataDelayThreshold Double
    Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when datadelaysensitivity set to CUSTOM.
    failedAt String
    The timestamp of the time the connection sync failed last time.
    groupId String
    The unique identifier for the Group (Destination) within the Fivetran system.
    hybridDeploymentAgentId String
    The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
    id String
    The unique identifier for the connection within the Fivetran system.
    name String
    The name used both as the connection's name within the Fivetran system and as the source schema's name within your destination.
    networkingMethod String
    Possible values: Directly, SshTunnel, ProxyAgent.
    pauseAfterTrial Boolean
    Specifies whether the connection should be paused after the free trial period has ended.
    paused Boolean
    Specifies whether the connection is paused.
    privateLinkId String
    The private link ID.
    proxyAgentId String
    The proxy agent ID.
    scheduleType String
    The connection schedule configuration type. Supported values: auto, manual.
    service String
    The connector type id within the Fivetran system.
    serviceVersion String
    The connector type version within the Fivetran system.
    succeededAt String
    The timestamp of the time the connection sync succeeded last time.
    syncFrequency Double
    The connection sync frequency in minutes.
    destinationSchema GetConnectionDestinationSchema
    status GetConnectionStatus
    connectedBy string
    The unique identifier of the user who has created the connection in your account.
    createdAt string
    The timestamp of the time the connection was created in your account.
    dailySyncTime string
    The optional parameter that defines the sync start time when the sync frequency is already set or being set by the current request to 1440. It can be specified in one hour increments starting from 00:00 to 23:00. If not specified, we will use the baseline sync start time. This parameter has no effect on the 0 to 60 minutes offset used to determine the actual sync start time.
    dataDelaySensitivity string
    The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL. CUSTOM is only available for customers using the Enterprise plan or above.
    dataDelayThreshold number
    Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when datadelaysensitivity set to CUSTOM.
    failedAt string
    The timestamp of the time the connection sync failed last time.
    groupId string
    The unique identifier for the Group (Destination) within the Fivetran system.
    hybridDeploymentAgentId string
    The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
    id string
    The unique identifier for the connection within the Fivetran system.
    name string
    The name used both as the connection's name within the Fivetran system and as the source schema's name within your destination.
    networkingMethod string
    Possible values: Directly, SshTunnel, ProxyAgent.
    pauseAfterTrial boolean
    Specifies whether the connection should be paused after the free trial period has ended.
    paused boolean
    Specifies whether the connection is paused.
    privateLinkId string
    The private link ID.
    proxyAgentId string
    The proxy agent ID.
    scheduleType string
    The connection schedule configuration type. Supported values: auto, manual.
    service string
    The connector type id within the Fivetran system.
    serviceVersion string
    The connector type version within the Fivetran system.
    succeededAt string
    The timestamp of the time the connection sync succeeded last time.
    syncFrequency number
    The connection sync frequency in minutes.
    destinationSchema GetConnectionDestinationSchema
    status GetConnectionStatus
    connected_by str
    The unique identifier of the user who has created the connection in your account.
    created_at str
    The timestamp of the time the connection was created in your account.
    daily_sync_time str
    The optional parameter that defines the sync start time when the sync frequency is already set or being set by the current request to 1440. It can be specified in one hour increments starting from 00:00 to 23:00. If not specified, we will use the baseline sync start time. This parameter has no effect on the 0 to 60 minutes offset used to determine the actual sync start time.
    data_delay_sensitivity str
    The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL. CUSTOM is only available for customers using the Enterprise plan or above.
    data_delay_threshold float
    Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when datadelaysensitivity set to CUSTOM.
    failed_at str
    The timestamp of the time the connection sync failed last time.
    group_id str
    The unique identifier for the Group (Destination) within the Fivetran system.
    hybrid_deployment_agent_id str
    The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
    id str
    The unique identifier for the connection within the Fivetran system.
    name str
    The name used both as the connection's name within the Fivetran system and as the source schema's name within your destination.
    networking_method str
    Possible values: Directly, SshTunnel, ProxyAgent.
    pause_after_trial bool
    Specifies whether the connection should be paused after the free trial period has ended.
    paused bool
    Specifies whether the connection is paused.
    private_link_id str
    The private link ID.
    proxy_agent_id str
    The proxy agent ID.
    schedule_type str
    The connection schedule configuration type. Supported values: auto, manual.
    service str
    The connector type id within the Fivetran system.
    service_version str
    The connector type version within the Fivetran system.
    succeeded_at str
    The timestamp of the time the connection sync succeeded last time.
    sync_frequency float
    The connection sync frequency in minutes.
    destination_schema GetConnectionDestinationSchema
    status GetConnectionStatus
    connectedBy String
    The unique identifier of the user who has created the connection in your account.
    createdAt String
    The timestamp of the time the connection was created in your account.
    dailySyncTime String
    The optional parameter that defines the sync start time when the sync frequency is already set or being set by the current request to 1440. It can be specified in one hour increments starting from 00:00 to 23:00. If not specified, we will use the baseline sync start time. This parameter has no effect on the 0 to 60 minutes offset used to determine the actual sync start time.
    dataDelaySensitivity String
    The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL. CUSTOM is only available for customers using the Enterprise plan or above.
    dataDelayThreshold Number
    Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when datadelaysensitivity set to CUSTOM.
    failedAt String
    The timestamp of the time the connection sync failed last time.
    groupId String
    The unique identifier for the Group (Destination) within the Fivetran system.
    hybridDeploymentAgentId String
    The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the value is specified, the system will try to associate the connection with an existing agent.
    id String
    The unique identifier for the connection within the Fivetran system.
    name String
    The name used both as the connection's name within the Fivetran system and as the source schema's name within your destination.
    networkingMethod String
    Possible values: Directly, SshTunnel, ProxyAgent.
    pauseAfterTrial Boolean
    Specifies whether the connection should be paused after the free trial period has ended.
    paused Boolean
    Specifies whether the connection is paused.
    privateLinkId String
    The private link ID.
    proxyAgentId String
    The proxy agent ID.
    scheduleType String
    The connection schedule configuration type. Supported values: auto, manual.
    service String
    The connector type id within the Fivetran system.
    serviceVersion String
    The connector type version within the Fivetran system.
    succeededAt String
    The timestamp of the time the connection sync succeeded last time.
    syncFrequency Number
    The connection sync frequency in minutes.
    destinationSchema Property Map
    status Property Map

    Supporting Types

    GetConnectionDestinationSchema

    Name string
    The connector schema name in destination. Has to be unique within the group (destination). Required for connector creation.
    Prefix string
    The connector schema prefix has to be unique within the group (destination). Each replicated schema is prefixed with the provided value. Required for connector creation.
    Table string
    The table name unique within the schema to which connector will sync the data. Required for connector creation.
    TableGroupName string
    Table group name.
    Name string
    The connector schema name in destination. Has to be unique within the group (destination). Required for connector creation.
    Prefix string
    The connector schema prefix has to be unique within the group (destination). Each replicated schema is prefixed with the provided value. Required for connector creation.
    Table string
    The table name unique within the schema to which connector will sync the data. Required for connector creation.
    TableGroupName string
    Table group name.
    name String
    The connector schema name in destination. Has to be unique within the group (destination). Required for connector creation.
    prefix String
    The connector schema prefix has to be unique within the group (destination). Each replicated schema is prefixed with the provided value. Required for connector creation.
    table String
    The table name unique within the schema to which connector will sync the data. Required for connector creation.
    tableGroupName String
    Table group name.
    name string
    The connector schema name in destination. Has to be unique within the group (destination). Required for connector creation.
    prefix string
    The connector schema prefix has to be unique within the group (destination). Each replicated schema is prefixed with the provided value. Required for connector creation.
    table string
    The table name unique within the schema to which connector will sync the data. Required for connector creation.
    tableGroupName string
    Table group name.
    name str
    The connector schema name in destination. Has to be unique within the group (destination). Required for connector creation.
    prefix str
    The connector schema prefix has to be unique within the group (destination). Each replicated schema is prefixed with the provided value. Required for connector creation.
    table str
    The table name unique within the schema to which connector will sync the data. Required for connector creation.
    table_group_name str
    Table group name.
    name String
    The connector schema name in destination. Has to be unique within the group (destination). Required for connector creation.
    prefix String
    The connector schema prefix has to be unique within the group (destination). Each replicated schema is prefixed with the provided value. Required for connector creation.
    table String
    The table name unique within the schema to which connector will sync the data. Required for connector creation.
    tableGroupName String
    Table group name.

    GetConnectionStatus

    IsHistoricalSync bool
    The boolean specifying whether the connection should be triggered to re-sync all historical data. If you set this parameter to TRUE, the next scheduled sync will be historical. If the value is FALSE or not specified, the connection will not re-sync historical data. NOTE: When the value is TRUE, only the next scheduled sync will be historical, all subsequent ones will be incremental. This parameter is set to FALSE once the historical sync is completed.
    SetupState string
    The current setup state of the connection. The available values are: \n\n - incomplete - the setup config is incomplete, the setup tests never succeeded connected - the connection is properly set up, broken - the connection setup config is broken.
    SyncState string
    The current sync state of the connection. The available values are: scheduled - the sync is waiting to be run, syncing - the sync is currently running, paused - the sync is currently paused, rescheduled - the sync is waiting until more API calls are available in the source service.
    Tasks List<GetConnectionStatusTask>
    The collection of tasks for the connection.
    UpdateState string
    The current data update state of the connection. The available values are: on_schedule - the sync is running smoothly, no delays, delayed - the data is delayed for a longer time than expected for the update.
    Warnings List<GetConnectionStatusWarning>
    The collection of warnings for the connection.
    IsHistoricalSync bool
    The boolean specifying whether the connection should be triggered to re-sync all historical data. If you set this parameter to TRUE, the next scheduled sync will be historical. If the value is FALSE or not specified, the connection will not re-sync historical data. NOTE: When the value is TRUE, only the next scheduled sync will be historical, all subsequent ones will be incremental. This parameter is set to FALSE once the historical sync is completed.
    SetupState string
    The current setup state of the connection. The available values are: \n\n - incomplete - the setup config is incomplete, the setup tests never succeeded connected - the connection is properly set up, broken - the connection setup config is broken.
    SyncState string
    The current sync state of the connection. The available values are: scheduled - the sync is waiting to be run, syncing - the sync is currently running, paused - the sync is currently paused, rescheduled - the sync is waiting until more API calls are available in the source service.
    Tasks []GetConnectionStatusTask
    The collection of tasks for the connection.
    UpdateState string
    The current data update state of the connection. The available values are: on_schedule - the sync is running smoothly, no delays, delayed - the data is delayed for a longer time than expected for the update.
    Warnings []GetConnectionStatusWarning
    The collection of warnings for the connection.
    isHistoricalSync Boolean
    The boolean specifying whether the connection should be triggered to re-sync all historical data. If you set this parameter to TRUE, the next scheduled sync will be historical. If the value is FALSE or not specified, the connection will not re-sync historical data. NOTE: When the value is TRUE, only the next scheduled sync will be historical, all subsequent ones will be incremental. This parameter is set to FALSE once the historical sync is completed.
    setupState String
    The current setup state of the connection. The available values are: \n\n - incomplete - the setup config is incomplete, the setup tests never succeeded connected - the connection is properly set up, broken - the connection setup config is broken.
    syncState String
    The current sync state of the connection. The available values are: scheduled - the sync is waiting to be run, syncing - the sync is currently running, paused - the sync is currently paused, rescheduled - the sync is waiting until more API calls are available in the source service.
    tasks List<GetConnectionStatusTask>
    The collection of tasks for the connection.
    updateState String
    The current data update state of the connection. The available values are: on_schedule - the sync is running smoothly, no delays, delayed - the data is delayed for a longer time than expected for the update.
    warnings List<GetConnectionStatusWarning>
    The collection of warnings for the connection.
    isHistoricalSync boolean
    The boolean specifying whether the connection should be triggered to re-sync all historical data. If you set this parameter to TRUE, the next scheduled sync will be historical. If the value is FALSE or not specified, the connection will not re-sync historical data. NOTE: When the value is TRUE, only the next scheduled sync will be historical, all subsequent ones will be incremental. This parameter is set to FALSE once the historical sync is completed.
    setupState string
    The current setup state of the connection. The available values are: \n\n - incomplete - the setup config is incomplete, the setup tests never succeeded connected - the connection is properly set up, broken - the connection setup config is broken.
    syncState string
    The current sync state of the connection. The available values are: scheduled - the sync is waiting to be run, syncing - the sync is currently running, paused - the sync is currently paused, rescheduled - the sync is waiting until more API calls are available in the source service.
    tasks GetConnectionStatusTask[]
    The collection of tasks for the connection.
    updateState string
    The current data update state of the connection. The available values are: on_schedule - the sync is running smoothly, no delays, delayed - the data is delayed for a longer time than expected for the update.
    warnings GetConnectionStatusWarning[]
    The collection of warnings for the connection.
    is_historical_sync bool
    The boolean specifying whether the connection should be triggered to re-sync all historical data. If you set this parameter to TRUE, the next scheduled sync will be historical. If the value is FALSE or not specified, the connection will not re-sync historical data. NOTE: When the value is TRUE, only the next scheduled sync will be historical, all subsequent ones will be incremental. This parameter is set to FALSE once the historical sync is completed.
    setup_state str
    The current setup state of the connection. The available values are: \n\n - incomplete - the setup config is incomplete, the setup tests never succeeded connected - the connection is properly set up, broken - the connection setup config is broken.
    sync_state str
    The current sync state of the connection. The available values are: scheduled - the sync is waiting to be run, syncing - the sync is currently running, paused - the sync is currently paused, rescheduled - the sync is waiting until more API calls are available in the source service.
    tasks Sequence[GetConnectionStatusTask]
    The collection of tasks for the connection.
    update_state str
    The current data update state of the connection. The available values are: on_schedule - the sync is running smoothly, no delays, delayed - the data is delayed for a longer time than expected for the update.
    warnings Sequence[GetConnectionStatusWarning]
    The collection of warnings for the connection.
    isHistoricalSync Boolean
    The boolean specifying whether the connection should be triggered to re-sync all historical data. If you set this parameter to TRUE, the next scheduled sync will be historical. If the value is FALSE or not specified, the connection will not re-sync historical data. NOTE: When the value is TRUE, only the next scheduled sync will be historical, all subsequent ones will be incremental. This parameter is set to FALSE once the historical sync is completed.
    setupState String
    The current setup state of the connection. The available values are: \n\n - incomplete - the setup config is incomplete, the setup tests never succeeded connected - the connection is properly set up, broken - the connection setup config is broken.
    syncState String
    The current sync state of the connection. The available values are: scheduled - the sync is waiting to be run, syncing - the sync is currently running, paused - the sync is currently paused, rescheduled - the sync is waiting until more API calls are available in the source service.
    tasks List<Property Map>
    The collection of tasks for the connection.
    updateState String
    The current data update state of the connection. The available values are: on_schedule - the sync is running smoothly, no delays, delayed - the data is delayed for a longer time than expected for the update.
    warnings List<Property Map>
    The collection of warnings for the connection.

    GetConnectionStatusTask

    Code string
    Task code.
    Message string
    Task message.
    Code string
    Task code.
    Message string
    Task message.
    code String
    Task code.
    message String
    Task message.
    code string
    Task code.
    message string
    Task message.
    code str
    Task code.
    message str
    Task message.
    code String
    Task code.
    message String
    Task message.

    GetConnectionStatusWarning

    Code string
    Warning code.
    Message string
    Warning message.
    Code string
    Warning code.
    Message string
    Warning message.
    code String
    Warning code.
    message String
    Warning message.
    code string
    Warning code.
    message string
    Warning message.
    code str
    Warning code.
    message str
    Warning message.
    code String
    Warning code.
    message String
    Warning message.

    Package Details

    Repository
    fivetran fivetran/terraform-provider-fivetran
    License
    Notes
    This Pulumi package is based on the fivetran Terraform Provider.
    fivetran logo
    fivetran 1.8.1 published on Wednesday, May 28, 2025 by fivetran