Show / Hide Table of Contents

Class GroupArgs

Inheritance
System.Object
InputArgs
ResourceArgs
GroupArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.GitLab
Assembly: Pulumi.GitLab.dll
Syntax
public sealed class GroupArgs : ResourceArgs

Constructors

View Source

GroupArgs()

Declaration
public GroupArgs()

Properties

View Source

Description

The description of the group.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

LfsEnabled

Boolean, defaults to true. Whether to enable LFS support for projects in this group.

Declaration
public Input<bool> LfsEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

The name of this group.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ParentId

Integer, id of the parent group (creates a nested group).

Declaration
public Input<int> ParentId { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Path

The path of the group.

Declaration
public Input<string> Path { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RequestAccessEnabled

Boolean, defaults to false. Whether to enable users to request access to the group.

Declaration
public Input<bool> RequestAccessEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

VisibilityLevel

Set to public to create a public group. Valid values are private, internal, public. Groups are created as private by default.

Declaration
public Input<string> VisibilityLevel { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.