fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran
fivetran.getDbtProjects
Explore with Pulumi AI
This data source returns a list of all dbt Projects within your Fivetran account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const myProjects = fivetran.getDbtProjects({});
import pulumi
import pulumi_fivetran as fivetran
my_projects = fivetran.get_dbt_projects()
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.GetDbtProjects(ctx, map[string]interface{}{}, 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 myProjects = Fivetran.GetDbtProjects.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fivetran.FivetranFunctions;
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 myProjects = FivetranFunctions.getDbtProjects();
}
}
variables:
myProjects:
fn::invoke:
function: fivetran:getDbtProjects
arguments: {}
Using getDbtProjects
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 getDbtProjects(opts?: InvokeOptions): Promise<GetDbtProjectsResult>
function getDbtProjectsOutput(opts?: InvokeOptions): Output<GetDbtProjectsResult>
def get_dbt_projects(opts: Optional[InvokeOptions] = None) -> GetDbtProjectsResult
def get_dbt_projects_output(opts: Optional[InvokeOptions] = None) -> Output[GetDbtProjectsResult]
func GetDbtProjects(ctx *Context, opts ...InvokeOption) (*GetDbtProjectsResult, error)
func GetDbtProjectsOutput(ctx *Context, opts ...InvokeOption) GetDbtProjectsResultOutput
> Note: This function is named GetDbtProjects
in the Go SDK.
public static class GetDbtProjects
{
public static Task<GetDbtProjectsResult> InvokeAsync(InvokeOptions? opts = null)
public static Output<GetDbtProjectsResult> Invoke(InvokeOptions? opts = null)
}
public static CompletableFuture<GetDbtProjectsResult> getDbtProjects(InvokeOptions options)
public static Output<GetDbtProjectsResult> getDbtProjects(InvokeOptions options)
fn::invoke:
function: fivetran:index/getDbtProjects:getDbtProjects
arguments:
# arguments dictionary
getDbtProjects Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Projects
List<Get
Dbt Projects Project>
- Id string
- The provider-assigned unique ID for this managed resource.
- Projects
[]Get
Dbt Projects Project
- id String
- The provider-assigned unique ID for this managed resource.
- projects
List<Get
Dbt Projects Project>
- id string
- The provider-assigned unique ID for this managed resource.
- projects
Get
Dbt Projects Project[]
- id str
- The provider-assigned unique ID for this managed resource.
- projects
Sequence[Get
Dbt Projects Project]
- id String
- The provider-assigned unique ID for this managed resource.
- projects List<Property Map>
Supporting Types
GetDbtProjectsProject
- Created
At string - The timestamp of when the project was created in your account.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the DBT Project.
- Group
Id string - The name of the group within your account related to the project.
- Id string
- The unique identifier for the dbt project within the Fivetran system.
- Created
At string - The timestamp of when the project was created in your account.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the DBT Project.
- Group
Id string - The name of the group within your account related to the project.
- Id string
- The unique identifier for the dbt project within the Fivetran system.
- created
At String - The timestamp of when the project was created in your account.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the DBT Project.
- group
Id String - The name of the group within your account related to the project.
- id String
- The unique identifier for the dbt project within the Fivetran system.
- created
At string - The timestamp of when the project was created in your account.
- created
By stringId - The unique identifier for the User within the Fivetran system who created the DBT Project.
- group
Id string - The name of the group within your account related to the project.
- id string
- The unique identifier for the dbt project within the Fivetran system.
- created_
at str - The timestamp of when the project was created in your account.
- created_
by_ strid - The unique identifier for the User within the Fivetran system who created the DBT Project.
- group_
id str - The name of the group within your account related to the project.
- id str
- The unique identifier for the dbt project within the Fivetran system.
- created
At String - The timestamp of when the project was created in your account.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the DBT Project.
- group
Id String - The name of the group within your account related to the project.
- id String
- The unique identifier for the dbt project within the Fivetran system.
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the
fivetran
Terraform Provider.