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

fivetran.DbtTransformation

Explore with Pulumi AI

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

    This resource is Deprecated, please follow the 1.5.0 migration guide to update the schema.

    This resource allows you to add, manage and delete dbt Transformations for existing dbt Model. To retrieve available dbt Models use this Retrieve dbt Project models endpoint.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.DbtTransformation;
    import com.pulumi.fivetran.DbtTransformationArgs;
    import com.pulumi.fivetran.inputs.DbtTransformationScheduleArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var transformation = new DbtTransformation("transformation", DbtTransformationArgs.builder()
                .dbtModelName("dbt_model_name")
                .dbtProjectId("dbt_project_id")
                .paused("false")
                .runTests("false")
                .schedule(DbtTransformationScheduleArgs.builder()
                    .days_of_week(                
                        "MONDAY",
                        "SATURDAY")
                    .schedule_type("TIME_OF_DAY")
                    .time_of_day("12:00")
                    .build())
                .build());
    
        }
    }
    
    resources:
      transformation:
        type: fivetran:DbtTransformation
        properties:
          dbtModelName: dbt_model_name
          dbtProjectId: dbt_project_id
          paused: 'false'
          runTests: 'false'
          schedule:
            days_of_week:
              - MONDAY
              - SATURDAY
            schedule_type: TIME_OF_DAY
            time_of_day: 12:00
    

    Create DbtTransformation Resource

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

    Constructor syntax

    new DbtTransformation(name: string, args: DbtTransformationArgs, opts?: CustomResourceOptions);
    @overload
    def DbtTransformation(resource_name: str,
                          args: DbtTransformationArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbtTransformation(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          dbt_model_name: Optional[str] = None,
                          dbt_project_id: Optional[str] = None,
                          paused: Optional[bool] = None,
                          run_tests: Optional[bool] = None,
                          schedule: Optional[DbtTransformationScheduleArgs] = None,
                          timeouts: Optional[DbtTransformationTimeoutsArgs] = None)
    func NewDbtTransformation(ctx *Context, name string, args DbtTransformationArgs, opts ...ResourceOption) (*DbtTransformation, error)
    public DbtTransformation(string name, DbtTransformationArgs args, CustomResourceOptions? opts = null)
    public DbtTransformation(String name, DbtTransformationArgs args)
    public DbtTransformation(String name, DbtTransformationArgs args, CustomResourceOptions options)
    
    type: fivetran:DbtTransformation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DbtTransformationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DbtTransformationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DbtTransformationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbtTransformationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbtTransformationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dbtTransformationResource = new Fivetran.DbtTransformation("dbtTransformationResource", new()
    {
        DbtModelName = "string",
        DbtProjectId = "string",
        Paused = false,
        RunTests = false,
        Schedule = new Fivetran.Inputs.DbtTransformationScheduleArgs
        {
            DaysOfWeeks = new[]
            {
                "string",
            },
            Interval = 0,
            ScheduleType = "string",
            TimeOfDay = "string",
        },
        Timeouts = new Fivetran.Inputs.DbtTransformationTimeoutsArgs
        {
            Create = "string",
        },
    });
    
    example, err := fivetran.NewDbtTransformation(ctx, "dbtTransformationResource", &fivetran.DbtTransformationArgs{
    DbtModelName: pulumi.String("string"),
    DbtProjectId: pulumi.String("string"),
    Paused: pulumi.Bool(false),
    RunTests: pulumi.Bool(false),
    Schedule: &.DbtTransformationScheduleArgs{
    DaysOfWeeks: pulumi.StringArray{
    pulumi.String("string"),
    },
    Interval: pulumi.Float64(0),
    ScheduleType: pulumi.String("string"),
    TimeOfDay: pulumi.String("string"),
    },
    Timeouts: &.DbtTransformationTimeoutsArgs{
    Create: pulumi.String("string"),
    },
    })
    
    var dbtTransformationResource = new DbtTransformation("dbtTransformationResource", DbtTransformationArgs.builder()
        .dbtModelName("string")
        .dbtProjectId("string")
        .paused(false)
        .runTests(false)
        .schedule(DbtTransformationScheduleArgs.builder()
            .daysOfWeeks("string")
            .interval(0)
            .scheduleType("string")
            .timeOfDay("string")
            .build())
        .timeouts(DbtTransformationTimeoutsArgs.builder()
            .create("string")
            .build())
        .build());
    
    dbt_transformation_resource = fivetran.DbtTransformation("dbtTransformationResource",
        dbt_model_name="string",
        dbt_project_id="string",
        paused=False,
        run_tests=False,
        schedule={
            "days_of_weeks": ["string"],
            "interval": 0,
            "schedule_type": "string",
            "time_of_day": "string",
        },
        timeouts={
            "create": "string",
        })
    
    const dbtTransformationResource = new fivetran.DbtTransformation("dbtTransformationResource", {
        dbtModelName: "string",
        dbtProjectId: "string",
        paused: false,
        runTests: false,
        schedule: {
            daysOfWeeks: ["string"],
            interval: 0,
            scheduleType: "string",
            timeOfDay: "string",
        },
        timeouts: {
            create: "string",
        },
    });
    
    type: fivetran:DbtTransformation
    properties:
        dbtModelName: string
        dbtProjectId: string
        paused: false
        runTests: false
        schedule:
            daysOfWeeks:
                - string
            interval: 0
            scheduleType: string
            timeOfDay: string
        timeouts:
            create: string
    

    DbtTransformation Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DbtTransformation resource accepts the following input properties:

    DbtModelName string
    Target dbt Model name.
    DbtProjectId string
    The unique identifier for the dbt Project within the Fivetran system.
    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 DbtTransformationSchedule
    Timeouts DbtTransformationTimeouts
    DbtModelName string
    Target dbt Model name.
    DbtProjectId string
    The unique identifier for the dbt Project within the Fivetran system.
    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 DbtTransformationScheduleArgs
    Timeouts DbtTransformationTimeoutsArgs
    dbtModelName String
    Target dbt Model name.
    dbtProjectId String
    The unique identifier for the dbt Project within the Fivetran system.
    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 DbtTransformationSchedule
    timeouts DbtTransformationTimeouts
    dbtModelName string
    Target dbt Model name.
    dbtProjectId string
    The unique identifier for the dbt Project within the Fivetran system.
    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 DbtTransformationSchedule
    timeouts DbtTransformationTimeouts
    dbt_model_name str
    Target dbt Model name.
    dbt_project_id str
    The unique identifier for the dbt Project within the Fivetran system.
    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 DbtTransformationScheduleArgs
    timeouts DbtTransformationTimeoutsArgs
    dbtModelName String
    Target dbt Model name.
    dbtProjectId String
    The unique identifier for the dbt Project within the Fivetran system.
    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
    timeouts Property Map

    Outputs

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

    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    ModelIds List<string>
    Identifiers of related models.
    OutputModelName string
    The dbt Model name.
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    ModelIds []string
    Identifiers of related models.
    OutputModelName string
    The dbt Model name.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    modelIds List<String>
    Identifiers of related models.
    outputModelName String
    The dbt Model name.
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    modelIds string[]
    Identifiers of related models.
    outputModelName string
    The dbt Model name.
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    model_ids Sequence[str]
    Identifiers of related models.
    output_model_name str
    The dbt Model name.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    modelIds List<String>
    Identifiers of related models.
    outputModelName String
    The dbt Model name.

    Look up Existing DbtTransformation Resource

    Get an existing DbtTransformation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DbtTransformationState, opts?: CustomResourceOptions): DbtTransformation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            connector_ids: Optional[Sequence[str]] = None,
            created_at: Optional[str] = None,
            dbt_model_id: Optional[str] = None,
            dbt_model_name: Optional[str] = None,
            dbt_project_id: Optional[str] = None,
            model_ids: Optional[Sequence[str]] = None,
            output_model_name: Optional[str] = None,
            paused: Optional[bool] = None,
            run_tests: Optional[bool] = None,
            schedule: Optional[DbtTransformationScheduleArgs] = None,
            timeouts: Optional[DbtTransformationTimeoutsArgs] = None) -> DbtTransformation
    func GetDbtTransformation(ctx *Context, name string, id IDInput, state *DbtTransformationState, opts ...ResourceOption) (*DbtTransformation, error)
    public static DbtTransformation Get(string name, Input<string> id, DbtTransformationState? state, CustomResourceOptions? opts = null)
    public static DbtTransformation get(String name, Output<String> id, DbtTransformationState state, CustomResourceOptions options)
    resources:  _:    type: fivetran:DbtTransformation    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    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.
    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 DbtTransformationSchedule
    Timeouts DbtTransformationTimeouts
    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.
    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 DbtTransformationScheduleArgs
    Timeouts DbtTransformationTimeoutsArgs
    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.
    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 DbtTransformationSchedule
    timeouts DbtTransformationTimeouts
    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.
    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 DbtTransformationSchedule
    timeouts DbtTransformationTimeouts
    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.
    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 DbtTransformationScheduleArgs
    timeouts DbtTransformationTimeoutsArgs
    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.
    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
    timeouts Property Map

    Supporting Types

    DbtTransformationSchedule, DbtTransformationScheduleArgs

    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"

    DbtTransformationTimeouts, DbtTransformationTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    1. To import an existing fivetran_dbt_transformation resource into your Terraform state, you need to get Transformation ID on the transformation page in your Fivetran dashboard.

    2. Define an empty resource in your .tf configuration:

    hcl

    resource “fivetran_dbt_transformation” “my_imported_fivetran_dbt_transformation” {

    }

    1. Run the pulumi import command:
    $ pulumi import fivetran:index/dbtTransformation:DbtTransformation my_imported_fivetran_dbt_transformation {Transformation ID}
    
    1. Use the terraform state show command to get the values from the state:

    terraform state show ‘fivetran_dbt_transformation.my_imported_fivetran_dbt_transformation’

    1. Copy the values and paste them to your .tf configuration.

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

    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