fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran
fivetran.getGroup
Explore with Pulumi AI
This data source returns a group object.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const myGroup = fivetran.getGroup({
id: "anonymous_mystery",
});
import pulumi
import pulumi_fivetran as fivetran
my_group = fivetran.get_group(id="anonymous_mystery")
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.LookupGroup(ctx, &fivetran.LookupGroupArgs{
Id: "anonymous_mystery",
}, 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 myGroup = Fivetran.GetGroup.Invoke(new()
{
Id = "anonymous_mystery",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fivetran.FivetranFunctions;
import com.pulumi.fivetran.inputs.GetGroupArgs;
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 myGroup = FivetranFunctions.getGroup(GetGroupArgs.builder()
.id("anonymous_mystery")
.build());
}
}
variables:
myGroup:
fn::invoke:
function: fivetran:getGroup
arguments:
id: anonymous_mystery
Using getGroup
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 getGroup(args: GetGroupArgs, opts?: InvokeOptions): Promise<GetGroupResult>
function getGroupOutput(args: GetGroupOutputArgs, opts?: InvokeOptions): Output<GetGroupResult>
def get_group(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetGroupResult
def get_group_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetGroupResult]
func LookupGroup(ctx *Context, args *LookupGroupArgs, opts ...InvokeOption) (*LookupGroupResult, error)
func LookupGroupOutput(ctx *Context, args *LookupGroupOutputArgs, opts ...InvokeOption) LookupGroupResultOutput
> Note: This function is named LookupGroup
in the Go SDK.
public static class GetGroup
{
public static Task<GetGroupResult> InvokeAsync(GetGroupArgs args, InvokeOptions? opts = null)
public static Output<GetGroupResult> Invoke(GetGroupInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetGroupResult> getGroup(GetGroupArgs args, InvokeOptions options)
public static Output<GetGroupResult> getGroup(GetGroupArgs args, InvokeOptions options)
fn::invoke:
function: fivetran:index/getGroup:getGroup
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- The unique identifier for the group within the Fivetran system.
- Id string
- The unique identifier for the group within the Fivetran system.
- id String
- The unique identifier for the group within the Fivetran system.
- id string
- The unique identifier for the group within the Fivetran system.
- id str
- The unique identifier for the group within the Fivetran system.
- id String
- The unique identifier for the group within the Fivetran system.
getGroup Result
The following output properties are available:
- Created
At string - The timestamp of when the group was created in your account.
- Id string
- The unique identifier for the group within the Fivetran system.
- Last
Updated string - The timestamp of when the resource/datasource was updated last time.
- Name string
- The name of the group within your account.
- Created
At string - The timestamp of when the group was created in your account.
- Id string
- The unique identifier for the group within the Fivetran system.
- Last
Updated string - The timestamp of when the resource/datasource was updated last time.
- Name string
- The name of the group within your account.
- created
At String - The timestamp of when the group was created in your account.
- id String
- The unique identifier for the group within the Fivetran system.
- last
Updated String - The timestamp of when the resource/datasource was updated last time.
- name String
- The name of the group within your account.
- created
At string - The timestamp of when the group was created in your account.
- id string
- The unique identifier for the group within the Fivetran system.
- last
Updated string - The timestamp of when the resource/datasource was updated last time.
- name string
- The name of the group within your account.
- created_
at str - The timestamp of when the group was created in your account.
- id str
- The unique identifier for the group within the Fivetran system.
- last_
updated str - The timestamp of when the resource/datasource was updated last time.
- name str
- The name of the group within your account.
- created
At String - The timestamp of when the group was created in your account.
- id String
- The unique identifier for the group within the Fivetran system.
- last
Updated String - The timestamp of when the resource/datasource was updated last time.
- name String
- The name of the group within your account.
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the
fivetran
Terraform Provider.