GetGroup
Provides details about a specific group in the gitlab provider.
Example Usage
using Pulumi;
using GitLab = Pulumi.GitLab;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(GitLab.GetGroup.InvokeAsync(new GitLab.GetGroupArgs
{
GroupId = 123,
}));
}
}
Coming soon!
import pulumi
import pulumi_gitlab as gitlab
foo = gitlab.get_group(group_id=123)import * as pulumi from "@pulumi/pulumi";
import * as gitlab from "@pulumi/gitlab";
const foo = pulumi.output(gitlab.getGroup({
groupId: 123,
}, { async: true }));Using GetGroup
function getGroup(args: GetGroupArgs, opts?: InvokeOptions): Promise<GetGroupResult>function get_group(full_path=None, group_id=None, opts=None)func LookupGroup(ctx *Context, args *LookupGroupArgs, opts ...InvokeOption) (*LookupGroupResult, error)Note: This function is named
LookupGroupin the Go SDK.
public static class GetGroup {
public static Task<GetGroupResult> InvokeAsync(GetGroupArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetGroup Result
The following output properties are available:
- Description string
The description of the group.
- Full
Name string The full name of the group.
- Full
Path string The full path of the group.
- Group
Id int - Id string
The provider-assigned unique ID for this managed resource.
- Lfs
Enabled bool Boolean, is LFS enabled for projects in this group.
- Name string
The name of this group.
- Parent
Id int Integer, ID of the parent group.
- Path string
The path of the group.
- Request
Access boolEnabled Boolean, is request for access enabled to the group.
- Runners
Token string The group level registration token to use during runner setup.
- Visibility
Level string Visibility level of the group. Possible values are
private,internal,public.- Web
Url string Web URL of the group.
- Description string
The description of the group.
- Full
Name string The full name of the group.
- Full
Path string The full path of the group.
- Group
Id int - Id string
The provider-assigned unique ID for this managed resource.
- Lfs
Enabled bool Boolean, is LFS enabled for projects in this group.
- Name string
The name of this group.
- Parent
Id int Integer, ID of the parent group.
- Path string
The path of the group.
- Request
Access boolEnabled Boolean, is request for access enabled to the group.
- Runners
Token string The group level registration token to use during runner setup.
- Visibility
Level string Visibility level of the group. Possible values are
private,internal,public.- Web
Url string Web URL of the group.
- description string
The description of the group.
- full
Name string The full name of the group.
- full
Path string The full path of the group.
- group
Id number - id string
The provider-assigned unique ID for this managed resource.
- lfs
Enabled boolean Boolean, is LFS enabled for projects in this group.
- name string
The name of this group.
- parent
Id number Integer, ID of the parent group.
- path string
The path of the group.
- request
Access booleanEnabled Boolean, is request for access enabled to the group.
- runners
Token string The group level registration token to use during runner setup.
- visibility
Level string Visibility level of the group. Possible values are
private,internal,public.- web
Url string Web URL of the group.
- description str
The description of the group.
- full_
name str The full name of the group.
- full_
path str The full path of the group.
- group_
id float - id str
The provider-assigned unique ID for this managed resource.
- lfs_
enabled bool Boolean, is LFS enabled for projects in this group.
- name str
The name of this group.
- parent_
id float Integer, ID of the parent group.
- path str
The path of the group.
- request_
access_ boolenabled Boolean, is request for access enabled to the group.
- runners_
token str The group level registration token to use during runner setup.
- visibility_
level str Visibility level of the group. Possible values are
private,internal,public.- web_
url str Web URL of the group.
Package Details
- Repository
- https://github.com/pulumi/pulumi-gitlab
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
gitlabTerraform Provider.