GetOrganizationTeamSyncGroups
Use this data source to retrieve the identity provider (IdP) groups for an organization.
Example Usage
using Pulumi;
using Github = Pulumi.Github;
class MyStack : Stack
{
public MyStack()
{
var test = Output.Create(Github.GetOrganizationTeamSyncGroups.InvokeAsync());
}
}
Coming soon!
import pulumi
import pulumi_github as github
test = github.get_organization_team_sync_groups()import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";
const test = pulumi.output(github.getOrganizationTeamSyncGroups({ async: true }));Using GetOrganizationTeamSyncGroups
function getOrganizationTeamSyncGroups(opts?: InvokeOptions): Promise<GetOrganizationTeamSyncGroupsResult>function get_organization_team_sync_groups(opts=None)func GetOrganizationTeamSyncGroups(ctx *Context, opts ...InvokeOption) (*GetOrganizationTeamSyncGroupsResult, error)public static class GetOrganizationTeamSyncGroups {
public static Task<GetOrganizationTeamSyncGroupsResult> InvokeAsync(InvokeOptions? opts = null)
}GetOrganizationTeamSyncGroups Result
The following output properties are available:
- Groups
List<Get
Organization Team Sync Groups Group> An Array of GitHub Identity Provider Groups. Each
groupblock consists of the fields documented below.- Id string
The provider-assigned unique ID for this managed resource.
- Groups
[]Get
Organization Team Sync Groups Group An Array of GitHub Identity Provider Groups. Each
groupblock consists of the fields documented below.- Id string
The provider-assigned unique ID for this managed resource.
- groups
Get
Organization Team Sync Groups Group[] An Array of GitHub Identity Provider Groups. Each
groupblock consists of the fields documented below.- id string
The provider-assigned unique ID for this managed resource.
- groups
List[Get
Organization Team Sync Groups Group] An Array of GitHub Identity Provider Groups. Each
groupblock consists of the fields documented below.- id str
The provider-assigned unique ID for this managed resource.
Supporting Types
GetOrganizationTeamSyncGroupsGroup
See the output API doc for this type.
See the output API doc for this type.
See the output API doc for this type.
Package Details
- Repository
- https://github.com/pulumi/pulumi-github
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
githubTerraform Provider.