1. Packages
  2. Fivetran Provider
  3. API Docs
  4. getTransformationProjects
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

fivetran.getTransformationProjects

Explore with Pulumi AI

fivetran logo
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

    Returns a list of all transformation projects available via API within your Fivetran account.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const test = fivetran.getTransformationProjects({});
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    test = fivetran.get_transformation_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.GetTransformationProjects(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 test = Fivetran.GetTransformationProjects.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 test = FivetranFunctions.getTransformationProjects();
    
        }
    }
    
    variables:
      test:
        fn::invoke:
          function: fivetran:getTransformationProjects
          arguments: {}
    

    Using getTransformationProjects

    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 getTransformationProjects(opts?: InvokeOptions): Promise<GetTransformationProjectsResult>
    function getTransformationProjectsOutput(opts?: InvokeOptions): Output<GetTransformationProjectsResult>
    def get_transformation_projects(opts: Optional[InvokeOptions] = None) -> GetTransformationProjectsResult
    def get_transformation_projects_output(opts: Optional[InvokeOptions] = None) -> Output[GetTransformationProjectsResult]
    func GetTransformationProjects(ctx *Context, opts ...InvokeOption) (*GetTransformationProjectsResult, error)
    func GetTransformationProjectsOutput(ctx *Context, opts ...InvokeOption) GetTransformationProjectsResultOutput

    > Note: This function is named GetTransformationProjects in the Go SDK.

    public static class GetTransformationProjects 
    {
        public static Task<GetTransformationProjectsResult> InvokeAsync(InvokeOptions? opts = null)
        public static Output<GetTransformationProjectsResult> Invoke(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTransformationProjectsResult> getTransformationProjects(InvokeOptions options)
    public static Output<GetTransformationProjectsResult> getTransformationProjects(InvokeOptions options)
    
    fn::invoke:
      function: fivetran:index/getTransformationProjects:getTransformationProjects
      arguments:
        # arguments dictionary

    getTransformationProjects Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Projects List<GetTransformationProjectsProject>
    Id string
    The provider-assigned unique ID for this managed resource.
    Projects []GetTransformationProjectsProject
    id String
    The provider-assigned unique ID for this managed resource.
    projects List<GetTransformationProjectsProject>
    id string
    The provider-assigned unique ID for this managed resource.
    projects GetTransformationProjectsProject[]
    id str
    The provider-assigned unique ID for this managed resource.
    projects Sequence[GetTransformationProjectsProject]
    id String
    The provider-assigned unique ID for this managed resource.
    projects List<Property Map>

    Supporting Types

    GetTransformationProjectsProject

    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 transformation Project.
    GroupId string
    The name of the group within your account related to the project.
    Id string
    The unique identifier for the transformation project within the Fivetran system.
    Type string
    Transformation project type.
    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 transformation Project.
    GroupId string
    The name of the group within your account related to the project.
    Id string
    The unique identifier for the transformation project within the Fivetran system.
    Type string
    Transformation project type.
    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 transformation Project.
    groupId String
    The name of the group within your account related to the project.
    id String
    The unique identifier for the transformation project within the Fivetran system.
    type String
    Transformation project type.
    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 transformation Project.
    groupId string
    The name of the group within your account related to the project.
    id string
    The unique identifier for the transformation project within the Fivetran system.
    type string
    Transformation project type.
    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 transformation Project.
    group_id str
    The name of the group within your account related to the project.
    id str
    The unique identifier for the transformation project within the Fivetran system.
    type str
    Transformation project type.
    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 transformation Project.
    groupId String
    The name of the group within your account related to the project.
    id String
    The unique identifier for the transformation project within the Fivetran system.
    type String
    Transformation project type.

    Package Details

    Repository
    fivetran fivetran/terraform-provider-fivetran
    License
    Notes
    This Pulumi package is based on the fivetran Terraform Provider.
    fivetran logo
    fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran