1. Packages
  2. Fivetran Provider
  3. API Docs
  4. getTransformationProjects
fivetran 1.6.1 published on Monday, Mar 31, 2025 by fivetran

fivetran.getTransformationProjects

Explore with Pulumi AI

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({});
Copy
import pulumi
import pulumi_fivetran as fivetran

test = fivetran.get_transformation_projects()
Copy
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
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fivetran = Pulumi.Fivetran;

return await Deployment.RunAsync(() => 
{
    var test = Fivetran.GetTransformationProjects.Invoke();

});
Copy
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();

    }
}
Copy
variables:
  test:
    fn::invoke:
      function: fivetran:getTransformationProjects
      arguments: {}
Copy

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

> 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)
}
Copy
public static CompletableFuture<GetTransformationProjectsResult> getTransformationProjects(InvokeOptions options)
public static Output<GetTransformationProjectsResult> getTransformationProjects(InvokeOptions options)
Copy
fn::invoke:
  function: fivetran:index/getTransformationProjects:getTransformationProjects
  arguments:
    # arguments dictionary
Copy

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 This property is required. string
The timestamp of when the project was created in your account.
CreatedById This property is required. string
The unique identifier for the User within the Fivetran system who created the transformation Project.
GroupId This property is required. string
The name of the group within your account related to the project.
Id This property is required. string
The unique identifier for the transformation project within the Fivetran system.
Type This property is required. string
Transformation project type.
CreatedAt This property is required. string
The timestamp of when the project was created in your account.
CreatedById This property is required. string
The unique identifier for the User within the Fivetran system who created the transformation Project.
GroupId This property is required. string
The name of the group within your account related to the project.
Id This property is required. string
The unique identifier for the transformation project within the Fivetran system.
Type This property is required. string
Transformation project type.
createdAt This property is required. String
The timestamp of when the project was created in your account.
createdById This property is required. String
The unique identifier for the User within the Fivetran system who created the transformation Project.
groupId This property is required. String
The name of the group within your account related to the project.
id This property is required. String
The unique identifier for the transformation project within the Fivetran system.
type This property is required. String
Transformation project type.
createdAt This property is required. string
The timestamp of when the project was created in your account.
createdById This property is required. string
The unique identifier for the User within the Fivetran system who created the transformation Project.
groupId This property is required. string
The name of the group within your account related to the project.
id This property is required. string
The unique identifier for the transformation project within the Fivetran system.
type This property is required. string
Transformation project type.
created_at This property is required. str
The timestamp of when the project was created in your account.
created_by_id This property is required. str
The unique identifier for the User within the Fivetran system who created the transformation Project.
group_id This property is required. str
The name of the group within your account related to the project.
id This property is required. str
The unique identifier for the transformation project within the Fivetran system.
type This property is required. str
Transformation project type.
createdAt This property is required. String
The timestamp of when the project was created in your account.
createdById This property is required. String
The unique identifier for the User within the Fivetran system who created the transformation Project.
groupId This property is required. String
The name of the group within your account related to the project.
id This property is required. String
The unique identifier for the transformation project within the Fivetran system.
type This property is required. String
Transformation project type.

Package Details

Repository
fivetran fivetran/terraform-provider-fivetran
License
Notes
This Pulumi package is based on the fivetran Terraform Provider.