fivetran.DbtTransformation
Explore with Pulumi AI
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:
- Dbt
Model stringName - Target dbt Model name.
- Dbt
Project stringId - 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
Dbt
Transformation Schedule - Timeouts
Dbt
Transformation Timeouts
- Dbt
Model stringName - Target dbt Model name.
- Dbt
Project stringId - 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
Dbt
Transformation Schedule Args - Timeouts
Dbt
Transformation Timeouts Args
- dbt
Model StringName - Target dbt Model name.
- dbt
Project StringId - 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.
- run
Tests Boolean - The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
- schedule
Dbt
Transformation Schedule - timeouts
Dbt
Transformation Timeouts
- dbt
Model stringName - Target dbt Model name.
- dbt
Project stringId - 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.
- run
Tests boolean - The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
- schedule
Dbt
Transformation Schedule - timeouts
Dbt
Transformation Timeouts
- dbt_
model_ strname - Target dbt Model name.
- dbt_
project_ strid - 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
Dbt
Transformation Schedule Args - timeouts
Dbt
Transformation Timeouts Args
- dbt
Model StringName - Target dbt Model name.
- dbt
Project StringId - 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.
- run
Tests 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:
- Connector
Ids List<string> - Identifiers of related connectors.
- Created
At string - The timestamp of the dbt Transformation creation.
- Dbt
Model stringId - The unique identifier for the dbt Model within the Fivetran system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Model
Ids List<string> - Identifiers of related models.
- Output
Model stringName - The dbt Model name.
- Connector
Ids []string - Identifiers of related connectors.
- Created
At string - The timestamp of the dbt Transformation creation.
- Dbt
Model stringId - The unique identifier for the dbt Model within the Fivetran system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Model
Ids []string - Identifiers of related models.
- Output
Model stringName - The dbt Model name.
- connector
Ids List<String> - Identifiers of related connectors.
- created
At String - The timestamp of the dbt Transformation creation.
- dbt
Model StringId - The unique identifier for the dbt Model within the Fivetran system.
- id String
- The provider-assigned unique ID for this managed resource.
- model
Ids List<String> - Identifiers of related models.
- output
Model StringName - The dbt Model name.
- connector
Ids string[] - Identifiers of related connectors.
- created
At string - The timestamp of the dbt Transformation creation.
- dbt
Model stringId - The unique identifier for the dbt Model within the Fivetran system.
- id string
- The provider-assigned unique ID for this managed resource.
- model
Ids string[] - Identifiers of related models.
- output
Model stringName - The dbt Model name.
- connector_
ids Sequence[str] - Identifiers of related connectors.
- created_
at str - The timestamp of the dbt Transformation creation.
- dbt_
model_ strid - 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_ strname - The dbt Model name.
- connector
Ids List<String> - Identifiers of related connectors.
- created
At String - The timestamp of the dbt Transformation creation.
- dbt
Model StringId - The unique identifier for the dbt Model within the Fivetran system.
- id String
- The provider-assigned unique ID for this managed resource.
- model
Ids List<String> - Identifiers of related models.
- output
Model StringName - 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.
- Connector
Ids List<string> - Identifiers of related connectors.
- Created
At string - The timestamp of the dbt Transformation creation.
- Dbt
Model stringId - The unique identifier for the dbt Model within the Fivetran system.
- Dbt
Model stringName - Target dbt Model name.
- Dbt
Project stringId - The unique identifier for the dbt Project within the Fivetran system.
- Model
Ids List<string> - Identifiers of related models.
- Output
Model stringName - 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
Dbt
Transformation Schedule - Timeouts
Dbt
Transformation Timeouts
- Connector
Ids []string - Identifiers of related connectors.
- Created
At string - The timestamp of the dbt Transformation creation.
- Dbt
Model stringId - The unique identifier for the dbt Model within the Fivetran system.
- Dbt
Model stringName - Target dbt Model name.
- Dbt
Project stringId - The unique identifier for the dbt Project within the Fivetran system.
- Model
Ids []string - Identifiers of related models.
- Output
Model stringName - 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
Dbt
Transformation Schedule Args - Timeouts
Dbt
Transformation Timeouts Args
- connector
Ids List<String> - Identifiers of related connectors.
- created
At String - The timestamp of the dbt Transformation creation.
- dbt
Model StringId - The unique identifier for the dbt Model within the Fivetran system.
- dbt
Model StringName - Target dbt Model name.
- dbt
Project StringId - The unique identifier for the dbt Project within the Fivetran system.
- model
Ids List<String> - Identifiers of related models.
- output
Model StringName - 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.
- run
Tests Boolean - The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
- schedule
Dbt
Transformation Schedule - timeouts
Dbt
Transformation Timeouts
- connector
Ids string[] - Identifiers of related connectors.
- created
At string - The timestamp of the dbt Transformation creation.
- dbt
Model stringId - The unique identifier for the dbt Model within the Fivetran system.
- dbt
Model stringName - Target dbt Model name.
- dbt
Project stringId - The unique identifier for the dbt Project within the Fivetran system.
- model
Ids string[] - Identifiers of related models.
- output
Model stringName - 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.
- run
Tests boolean - The field indicating whether the tests have been configured for dbt Transformation. By default, the value is false.
- schedule
Dbt
Transformation Schedule - timeouts
Dbt
Transformation Timeouts
- connector_
ids Sequence[str] - Identifiers of related connectors.
- created_
at str - The timestamp of the dbt Transformation creation.
- dbt_
model_ strid - The unique identifier for the dbt Model within the Fivetran system.
- dbt_
model_ strname - Target dbt Model name.
- dbt_
project_ strid - The unique identifier for the dbt Project within the Fivetran system.
- model_
ids Sequence[str] - Identifiers of related models.
- output_
model_ strname - 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
Dbt
Transformation Schedule Args - timeouts
Dbt
Transformation Timeouts Args
- connector
Ids List<String> - Identifiers of related connectors.
- created
At String - The timestamp of the dbt Transformation creation.
- dbt
Model StringId - The unique identifier for the dbt Model within the Fivetran system.
- dbt
Model StringName - Target dbt Model name.
- dbt
Project StringId - The unique identifier for the dbt Project within the Fivetran system.
- model
Ids List<String> - Identifiers of related models.
- output
Model StringName - 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.
- run
Tests 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
- Days
Of List<string>Weeks - 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.
- Schedule
Type 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.
- Time
Of stringDay - 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 []stringWeeks - 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.
- Schedule
Type 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.
- Time
Of stringDay - 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 List<String>Weeks - 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.
- schedule
Type 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.
- time
Of StringDay - 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 string[]Weeks - 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.
- schedule
Type 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.
- time
Of stringDay - 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_ Sequence[str]weeks - 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_ strday - 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 List<String>Weeks - 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.
- schedule
Type 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.
- time
Of StringDay - 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
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.Define an empty resource in your
.tf
configuration:
hcl
resource “fivetran_dbt_transformation” “my_imported_fivetran_dbt_transformation” {
}
- Run the
pulumi import
command:
$ pulumi import fivetran:index/dbtTransformation:DbtTransformation my_imported_fivetran_dbt_transformation {Transformation ID}
- Use the
terraform state show
command to get the values from the state:
terraform state show ‘fivetran_dbt_transformation.my_imported_fivetran_dbt_transformation’
- 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.