fivetran 1.6.0 published on Tuesday, Mar 25, 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({});
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<Get
Transformation Projects Project>
- Id string
- The provider-assigned unique ID for this managed resource.
- Projects
[]Get
Transformation Projects Project
- id String
- The provider-assigned unique ID for this managed resource.
- projects
List<Get
Transformation Projects Project>
- id string
- The provider-assigned unique ID for this managed resource.
- projects
Get
Transformation Projects Project[]
- id str
- The provider-assigned unique ID for this managed resource.
- projects
Sequence[Get
Transformation Projects Project]
- id String
- The provider-assigned unique ID for this managed resource.
- projects List<Property Map>
Supporting Types
GetTransformationProjectsProject
- 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 transformation Project.
- Group
Id 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 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 transformation Project.
- Group
Id 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 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 transformation Project.
- group
Id 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 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 transformation Project.
- group
Id 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_ strid - 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.
- 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 transformation Project.
- group
Id 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.