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

fivetran.getDbtProjects

Explore with Pulumi AI

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

    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<GetDbtProjectsProject>
    Id string
    The provider-assigned unique ID for this managed resource.
    Projects []GetDbtProjectsProject
    id String
    The provider-assigned unique ID for this managed resource.
    projects List<GetDbtProjectsProject>
    id string
    The provider-assigned unique ID for this managed resource.
    projects GetDbtProjectsProject[]
    id str
    The provider-assigned unique ID for this managed resource.
    projects Sequence[GetDbtProjectsProject]
    id String
    The provider-assigned unique ID for this managed resource.
    projects List<Property Map>

    Supporting Types

    GetDbtProjectsProject

    CreatedAt string
    The timestamp of when the project was created in your account.
    CreatedById string
    The unique identifier for the User within the Fivetran system who created the DBT Project.
    GroupId 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.
    CreatedAt string
    The timestamp of when the project was created in your account.
    CreatedById string
    The unique identifier for the User within the Fivetran system who created the DBT Project.
    GroupId 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.
    createdAt String
    The timestamp of when the project was created in your account.
    createdById String
    The unique identifier for the User within the Fivetran system who created the DBT Project.
    groupId 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.
    createdAt string
    The timestamp of when the project was created in your account.
    createdById string
    The unique identifier for the User within the Fivetran system who created the DBT Project.
    groupId 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_id str
    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.
    createdAt String
    The timestamp of when the project was created in your account.
    createdById String
    The unique identifier for the User within the Fivetran system who created the DBT Project.
    groupId 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.
    fivetran logo
    fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran