prefect 2.22.3 published on Thursday, Mar 20, 2025 by prefecthq
prefect.getTeams
Explore with Pulumi AI
prefect 2.22.3 published on Thursday, Mar 20, 2025 by prefecthq
Get information about multiple Teams.
Use this data source to search for multiple Teams. Defaults to fetching all Teams in the Account.
This feature is available in the following product plan(s): Prefect Cloud (Enterprise).
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as prefect from "@pulumi/prefect";
const allTeams = prefect.getTeams({});
import pulumi
import pulumi_prefect as prefect
all_teams = prefect.get_teams()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/prefect/v2/prefect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := prefect.GetTeams(ctx, &prefect.GetTeamsArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Prefect = Pulumi.Prefect;
return await Deployment.RunAsync(() =>
{
var allTeams = Prefect.GetTeams.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.prefect.PrefectFunctions;
import com.pulumi.prefect.inputs.GetTeamsArgs;
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 allTeams = PrefectFunctions.getTeams();
}
}
variables:
allTeams:
fn::invoke:
function: prefect:getTeams
arguments: {}
Using getTeams
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 getTeams(args: GetTeamsArgs, opts?: InvokeOptions): Promise<GetTeamsResult>
function getTeamsOutput(args: GetTeamsOutputArgs, opts?: InvokeOptions): Output<GetTeamsResult>
def get_teams(account_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTeamsResult
def get_teams_output(account_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTeamsResult]
func GetTeams(ctx *Context, args *GetTeamsArgs, opts ...InvokeOption) (*GetTeamsResult, error)
func GetTeamsOutput(ctx *Context, args *GetTeamsOutputArgs, opts ...InvokeOption) GetTeamsResultOutput
> Note: This function is named GetTeams
in the Go SDK.
public static class GetTeams
{
public static Task<GetTeamsResult> InvokeAsync(GetTeamsArgs args, InvokeOptions? opts = null)
public static Output<GetTeamsResult> Invoke(GetTeamsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetTeamsResult> getTeams(GetTeamsArgs args, InvokeOptions options)
public static Output<GetTeamsResult> getTeams(GetTeamsArgs args, InvokeOptions options)
fn::invoke:
function: prefect:index/getTeams:getTeams
arguments:
# arguments dictionary
The following arguments are supported:
- Account
Id string - Account ID (UUID), defaults to the account set in the provider
- Account
Id string - Account ID (UUID), defaults to the account set in the provider
- account
Id String - Account ID (UUID), defaults to the account set in the provider
- account
Id string - Account ID (UUID), defaults to the account set in the provider
- account_
id str - Account ID (UUID), defaults to the account set in the provider
- account
Id String - Account ID (UUID), defaults to the account set in the provider
getTeams Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Teams
List<Get
Teams Team> - Teams returned by the server
- Account
Id string - Account ID (UUID), defaults to the account set in the provider
- Id string
- The provider-assigned unique ID for this managed resource.
- Teams
[]Get
Teams Team - Teams returned by the server
- Account
Id string - Account ID (UUID), defaults to the account set in the provider
- id String
- The provider-assigned unique ID for this managed resource.
- teams
List<Get
Teams Team> - Teams returned by the server
- account
Id String - Account ID (UUID), defaults to the account set in the provider
- id string
- The provider-assigned unique ID for this managed resource.
- teams
Get
Teams Team[] - Teams returned by the server
- account
Id string - Account ID (UUID), defaults to the account set in the provider
- id str
- The provider-assigned unique ID for this managed resource.
- teams
Sequence[Get
Teams Team] - Teams returned by the server
- account_
id str - Account ID (UUID), defaults to the account set in the provider
- id String
- The provider-assigned unique ID for this managed resource.
- teams List<Property Map>
- Teams returned by the server
- account
Id String - Account ID (UUID), defaults to the account set in the provider
Supporting Types
GetTeamsTeam
- Created string
- Date and time of the team creation in RFC 3339 format
- Description string
- Description of team
- Id string
- Team ID (UUID)
- Name string
- Name of Team
- Updated string
- Date and time that the team was last updated in RFC 3339 format
- Created string
- Date and time of the team creation in RFC 3339 format
- Description string
- Description of team
- Id string
- Team ID (UUID)
- Name string
- Name of Team
- Updated string
- Date and time that the team was last updated in RFC 3339 format
- created String
- Date and time of the team creation in RFC 3339 format
- description String
- Description of team
- id String
- Team ID (UUID)
- name String
- Name of Team
- updated String
- Date and time that the team was last updated in RFC 3339 format
- created string
- Date and time of the team creation in RFC 3339 format
- description string
- Description of team
- id string
- Team ID (UUID)
- name string
- Name of Team
- updated string
- Date and time that the team was last updated in RFC 3339 format
- created str
- Date and time of the team creation in RFC 3339 format
- description str
- Description of team
- id str
- Team ID (UUID)
- name str
- Name of Team
- updated str
- Date and time that the team was last updated in RFC 3339 format
- created String
- Date and time of the team creation in RFC 3339 format
- description String
- Description of team
- id String
- Team ID (UUID)
- name String
- Name of Team
- updated String
- Date and time that the team was last updated in RFC 3339 format
Package Details
- Repository
- prefect prefecthq/terraform-provider-prefect
- License
- Notes
- This Pulumi package is based on the
prefect
Terraform Provider.
prefect 2.22.3 published on Thursday, Mar 20, 2025 by prefecthq