1. Packages
  2. Fivetran Provider
  3. API Docs
  4. getDbtTransformation
fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran

fivetran.getDbtTransformation

Explore with Pulumi AI

fivetran logo
fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran

    This data source returns a dbt Transformation object.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const transformation = fivetran.getDbtTransformation({
        id: "transformation_id",
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    transformation = fivetran.get_dbt_transformation(id="transformation_id")
    
    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.LookupDbtTransformation(ctx, &fivetran.LookupDbtTransformationArgs{
    			Id: "transformation_id",
    		}, 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 transformation = Fivetran.GetDbtTransformation.Invoke(new()
        {
            Id = "transformation_id",
        });
    
    });
    
    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.GetDbtTransformationArgs;
    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 transformation = FivetranFunctions.getDbtTransformation(GetDbtTransformationArgs.builder()
                .id("transformation_id")
                .build());
    
        }
    }
    
    variables:
      transformation:
        fn::invoke:
          function: fivetran:getDbtTransformation
          arguments:
            id: transformation_id
    

    Using getDbtTransformation

    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 getDbtTransformation(args: GetDbtTransformationArgs, opts?: InvokeOptions): Promise<GetDbtTransformationResult>
    function getDbtTransformationOutput(args: GetDbtTransformationOutputArgs, opts?: InvokeOptions): Output<GetDbtTransformationResult>
    def get_dbt_transformation(id: Optional[str] = None,
                               schedule: Optional[GetDbtTransformationSchedule] = None,
                               opts: Optional[InvokeOptions] = None) -> GetDbtTransformationResult
    def get_dbt_transformation_output(id: Optional[pulumi.Input[str]] = None,
                               schedule: Optional[pulumi.Input[GetDbtTransformationScheduleArgs]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetDbtTransformationResult]
    func LookupDbtTransformation(ctx *Context, args *LookupDbtTransformationArgs, opts ...InvokeOption) (*LookupDbtTransformationResult, error)
    func LookupDbtTransformationOutput(ctx *Context, args *LookupDbtTransformationOutputArgs, opts ...InvokeOption) LookupDbtTransformationResultOutput

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

    public static class GetDbtTransformation 
    {
        public static Task<GetDbtTransformationResult> InvokeAsync(GetDbtTransformationArgs args, InvokeOptions? opts = null)
        public static Output<GetDbtTransformationResult> Invoke(GetDbtTransformationInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbtTransformationResult> getDbtTransformation(GetDbtTransformationArgs args, InvokeOptions options)
    public static Output<GetDbtTransformationResult> getDbtTransformation(GetDbtTransformationArgs args, InvokeOptions options)
    
    fn::invoke:
      function: fivetran:index/getDbtTransformation:getDbtTransformation
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The unique identifier for the dbt Transformation within the Fivetran system.
    Schedule GetDbtTransformationSchedule
    Id string
    The unique identifier for the dbt Transformation within the Fivetran system.
    Schedule GetDbtTransformationSchedule
    id String
    The unique identifier for the dbt Transformation within the Fivetran system.
    schedule GetDbtTransformationSchedule
    id string
    The unique identifier for the dbt Transformation within the Fivetran system.
    schedule GetDbtTransformationSchedule
    id str
    The unique identifier for the dbt Transformation within the Fivetran system.
    schedule GetDbtTransformationSchedule
    id String
    The unique identifier for the dbt Transformation within the Fivetran system.
    schedule Property Map

    getDbtTransformation Result

    The following output properties are available:

    ConnectorIds List<string>
    Identifiers of related connectors.
    CreatedAt string
    The timestamp of the dbt Transformation creation.
    DbtModelId string
    The unique identifier for the dbt Model within the Fivetran system.
    DbtModelName string
    Target dbt Model name.
    DbtProjectId string
    The unique identifier for the dbt Project within the Fivetran system.
    Id string
    The unique identifier for the dbt Transformation within the Fivetran system.
    ModelIds List<string>
    Identifiers of related models.
    OutputModelName string
    The dbt Model name.
    Paused bool
    The field indicating whether the transformation will be set into the paused state. By default, the value is false.
    RunTests bool
    The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
    Schedule GetDbtTransformationSchedule
    ConnectorIds []string
    Identifiers of related connectors.
    CreatedAt string
    The timestamp of the dbt Transformation creation.
    DbtModelId string
    The unique identifier for the dbt Model within the Fivetran system.
    DbtModelName string
    Target dbt Model name.
    DbtProjectId string
    The unique identifier for the dbt Project within the Fivetran system.
    Id string
    The unique identifier for the dbt Transformation within the Fivetran system.
    ModelIds []string
    Identifiers of related models.
    OutputModelName string
    The dbt Model name.
    Paused bool
    The field indicating whether the transformation will be set into the paused state. By default, the value is false.
    RunTests bool
    The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
    Schedule GetDbtTransformationSchedule
    connectorIds List<String>
    Identifiers of related connectors.
    createdAt String
    The timestamp of the dbt Transformation creation.
    dbtModelId String
    The unique identifier for the dbt Model within the Fivetran system.
    dbtModelName String
    Target dbt Model name.
    dbtProjectId String
    The unique identifier for the dbt Project within the Fivetran system.
    id String
    The unique identifier for the dbt Transformation within the Fivetran system.
    modelIds List<String>
    Identifiers of related models.
    outputModelName String
    The dbt Model name.
    paused Boolean
    The field indicating whether the transformation will be set into the paused state. By default, the value is false.
    runTests Boolean
    The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
    schedule GetDbtTransformationSchedule
    connectorIds string[]
    Identifiers of related connectors.
    createdAt string
    The timestamp of the dbt Transformation creation.
    dbtModelId string
    The unique identifier for the dbt Model within the Fivetran system.
    dbtModelName string
    Target dbt Model name.
    dbtProjectId string
    The unique identifier for the dbt Project within the Fivetran system.
    id string
    The unique identifier for the dbt Transformation within the Fivetran system.
    modelIds string[]
    Identifiers of related models.
    outputModelName string
    The dbt Model name.
    paused boolean
    The field indicating whether the transformation will be set into the paused state. By default, the value is false.
    runTests boolean
    The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
    schedule GetDbtTransformationSchedule
    connector_ids Sequence[str]
    Identifiers of related connectors.
    created_at str
    The timestamp of the dbt Transformation creation.
    dbt_model_id str
    The unique identifier for the dbt Model within the Fivetran system.
    dbt_model_name str
    Target dbt Model name.
    dbt_project_id str
    The unique identifier for the dbt Project within the Fivetran system.
    id str
    The unique identifier for the dbt Transformation within the Fivetran system.
    model_ids Sequence[str]
    Identifiers of related models.
    output_model_name str
    The dbt Model name.
    paused bool
    The field indicating whether the transformation will be set into the paused state. By default, the value is false.
    run_tests bool
    The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
    schedule GetDbtTransformationSchedule
    connectorIds List<String>
    Identifiers of related connectors.
    createdAt String
    The timestamp of the dbt Transformation creation.
    dbtModelId String
    The unique identifier for the dbt Model within the Fivetran system.
    dbtModelName String
    Target dbt Model name.
    dbtProjectId String
    The unique identifier for the dbt Project within the Fivetran system.
    id String
    The unique identifier for the dbt Transformation within the Fivetran system.
    modelIds List<String>
    Identifiers of related models.
    outputModelName String
    The dbt Model name.
    paused Boolean
    The field indicating whether the transformation will be set into the paused state. By default, the value is false.
    runTests Boolean
    The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
    schedule Property Map

    Supporting Types

    GetDbtTransformationSchedule

    DaysOfWeeks List<string>
    The set of the days of the week the transformation should be launched on. The following values are supported: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY.
    Interval double
    The time interval in minutes between subsequent transformation runs.
    ScheduleType string
    The type of the schedule to run the dbt Transformation on. The following values are supported: INTEGRATED, TIMEOFDAY, INTERVAL. For INTEGRATED schedule type, interval and timeofday values are ignored and only the daysofweek parameter values are taken into account (but may be empty or null). For TIMEOFDAY schedule type, the interval parameter value is ignored and the timeofday values is taken into account along with daysofweek value. For INTERVAL schedule type, timeofday value is ignored and the interval parameter value is taken into account along with daysofweek value.
    TimeOfDay string
    The time of the day the transformation should be launched at. Supported values are: "00:00", "01:00", "02:00", "03:00", "04:00", "05:00", "06:00", "07:00", "08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"
    DaysOfWeeks []string
    The set of the days of the week the transformation should be launched on. The following values are supported: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY.
    Interval float64
    The time interval in minutes between subsequent transformation runs.
    ScheduleType string
    The type of the schedule to run the dbt Transformation on. The following values are supported: INTEGRATED, TIMEOFDAY, INTERVAL. For INTEGRATED schedule type, interval and timeofday values are ignored and only the daysofweek parameter values are taken into account (but may be empty or null). For TIMEOFDAY schedule type, the interval parameter value is ignored and the timeofday values is taken into account along with daysofweek value. For INTERVAL schedule type, timeofday value is ignored and the interval parameter value is taken into account along with daysofweek value.
    TimeOfDay string
    The time of the day the transformation should be launched at. Supported values are: "00:00", "01:00", "02:00", "03:00", "04:00", "05:00", "06:00", "07:00", "08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"
    daysOfWeeks List<String>
    The set of the days of the week the transformation should be launched on. The following values are supported: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY.
    interval Double
    The time interval in minutes between subsequent transformation runs.
    scheduleType String
    The type of the schedule to run the dbt Transformation on. The following values are supported: INTEGRATED, TIMEOFDAY, INTERVAL. For INTEGRATED schedule type, interval and timeofday values are ignored and only the daysofweek parameter values are taken into account (but may be empty or null). For TIMEOFDAY schedule type, the interval parameter value is ignored and the timeofday values is taken into account along with daysofweek value. For INTERVAL schedule type, timeofday value is ignored and the interval parameter value is taken into account along with daysofweek value.
    timeOfDay String
    The time of the day the transformation should be launched at. Supported values are: "00:00", "01:00", "02:00", "03:00", "04:00", "05:00", "06:00", "07:00", "08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"
    daysOfWeeks string[]
    The set of the days of the week the transformation should be launched on. The following values are supported: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY.
    interval number
    The time interval in minutes between subsequent transformation runs.
    scheduleType string
    The type of the schedule to run the dbt Transformation on. The following values are supported: INTEGRATED, TIMEOFDAY, INTERVAL. For INTEGRATED schedule type, interval and timeofday values are ignored and only the daysofweek parameter values are taken into account (but may be empty or null). For TIMEOFDAY schedule type, the interval parameter value is ignored and the timeofday values is taken into account along with daysofweek value. For INTERVAL schedule type, timeofday value is ignored and the interval parameter value is taken into account along with daysofweek value.
    timeOfDay string
    The time of the day the transformation should be launched at. Supported values are: "00:00", "01:00", "02:00", "03:00", "04:00", "05:00", "06:00", "07:00", "08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"
    days_of_weeks Sequence[str]
    The set of the days of the week the transformation should be launched on. The following values are supported: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY.
    interval float
    The time interval in minutes between subsequent transformation runs.
    schedule_type str
    The type of the schedule to run the dbt Transformation on. The following values are supported: INTEGRATED, TIMEOFDAY, INTERVAL. For INTEGRATED schedule type, interval and timeofday values are ignored and only the daysofweek parameter values are taken into account (but may be empty or null). For TIMEOFDAY schedule type, the interval parameter value is ignored and the timeofday values is taken into account along with daysofweek value. For INTERVAL schedule type, timeofday value is ignored and the interval parameter value is taken into account along with daysofweek value.
    time_of_day str
    The time of the day the transformation should be launched at. Supported values are: "00:00", "01:00", "02:00", "03:00", "04:00", "05:00", "06:00", "07:00", "08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"
    daysOfWeeks List<String>
    The set of the days of the week the transformation should be launched on. The following values are supported: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY.
    interval Number
    The time interval in minutes between subsequent transformation runs.
    scheduleType String
    The type of the schedule to run the dbt Transformation on. The following values are supported: INTEGRATED, TIMEOFDAY, INTERVAL. For INTEGRATED schedule type, interval and timeofday values are ignored and only the daysofweek parameter values are taken into account (but may be empty or null). For TIMEOFDAY schedule type, the interval parameter value is ignored and the timeofday values is taken into account along with daysofweek value. For INTERVAL schedule type, timeofday value is ignored and the interval parameter value is taken into account along with daysofweek value.
    timeOfDay String
    The time of the day the transformation should be launched at. Supported values are: "00:00", "01:00", "02:00", "03:00", "04:00", "05:00", "06:00", "07:00", "08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"

    Package Details

    Repository
    fivetran fivetran/terraform-provider-fivetran
    License
    Notes
    This Pulumi package is based on the fivetran Terraform Provider.
    fivetran logo
    fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran