fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran
fivetran.getDbtModels
Explore with Pulumi AI
This data source returns a list of all dbt Models available for specified dbt Project id.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const myModels = fivetran.getDbtModels({
projectId: "project_id",
});
import pulumi
import pulumi_fivetran as fivetran
my_models = fivetran.get_dbt_models(project_id="project_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.GetDbtModels(ctx, &fivetran.GetDbtModelsArgs{
ProjectId: "project_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 myModels = Fivetran.GetDbtModels.Invoke(new()
{
ProjectId = "project_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.GetDbtModelsArgs;
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 myModels = FivetranFunctions.getDbtModels(GetDbtModelsArgs.builder()
.projectId("project_id")
.build());
}
}
variables:
myModels:
fn::invoke:
function: fivetran:getDbtModels
arguments:
projectId: project_id
Using getDbtModels
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 getDbtModels(args: GetDbtModelsArgs, opts?: InvokeOptions): Promise<GetDbtModelsResult>
function getDbtModelsOutput(args: GetDbtModelsOutputArgs, opts?: InvokeOptions): Output<GetDbtModelsResult>
def get_dbt_models(models: Optional[Sequence[GetDbtModelsModel]] = None,
project_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbtModelsResult
def get_dbt_models_output(models: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbtModelsModelArgs]]]] = None,
project_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbtModelsResult]
func GetDbtModels(ctx *Context, args *GetDbtModelsArgs, opts ...InvokeOption) (*GetDbtModelsResult, error)
func GetDbtModelsOutput(ctx *Context, args *GetDbtModelsOutputArgs, opts ...InvokeOption) GetDbtModelsResultOutput
> Note: This function is named GetDbtModels
in the Go SDK.
public static class GetDbtModels
{
public static Task<GetDbtModelsResult> InvokeAsync(GetDbtModelsArgs args, InvokeOptions? opts = null)
public static Output<GetDbtModelsResult> Invoke(GetDbtModelsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDbtModelsResult> getDbtModels(GetDbtModelsArgs args, InvokeOptions options)
public static Output<GetDbtModelsResult> getDbtModels(GetDbtModelsArgs args, InvokeOptions options)
fn::invoke:
function: fivetran:index/getDbtModels:getDbtModels
arguments:
# arguments dictionary
The following arguments are supported:
- Project
Id string - The unique identifier for the dbt Project within the Fivetran system.
- Models
List<Get
Dbt Models Model>
- Project
Id string - The unique identifier for the dbt Project within the Fivetran system.
- Models
[]Get
Dbt Models Model
- project
Id String - The unique identifier for the dbt Project within the Fivetran system.
- models
List<Get
Dbt Models Model>
- project
Id string - The unique identifier for the dbt Project within the Fivetran system.
- models
Get
Dbt Models Model[]
- project_
id str - The unique identifier for the dbt Project within the Fivetran system.
- models
Sequence[Get
Dbt Models Model]
- project
Id String - The unique identifier for the dbt Project within the Fivetran system.
- models List<Property Map>
getDbtModels Result
The following output properties are available:
- Id string
- The ID of this datasource (equals to
project_id
). - Project
Id string - The unique identifier for the dbt Project within the Fivetran system.
- Models
List<Get
Dbt Models Model>
- Id string
- The ID of this datasource (equals to
project_id
). - Project
Id string - The unique identifier for the dbt Project within the Fivetran system.
- Models
[]Get
Dbt Models Model
- id String
- The ID of this datasource (equals to
project_id
). - project
Id String - The unique identifier for the dbt Project within the Fivetran system.
- models
List<Get
Dbt Models Model>
- id string
- The ID of this datasource (equals to
project_id
). - project
Id string - The unique identifier for the dbt Project within the Fivetran system.
- models
Get
Dbt Models Model[]
- id str
- The ID of this datasource (equals to
project_id
). - project_
id str - The unique identifier for the dbt Project within the Fivetran system.
- models
Sequence[Get
Dbt Models Model]
- id String
- The ID of this datasource (equals to
project_id
). - project
Id String - The unique identifier for the dbt Project within the Fivetran system.
- models List<Property Map>
Supporting Types
GetDbtModelsModel
- id str
- The unique identifier for the dbt Model within the Fivetran system.
- model_
name str - The dbt Model name.
- scheduled bool
- Boolean specifying whether the model is selected for execution in the dashboard.
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the
fivetran
Terraform Provider.