Class GetProjectArgs
Inheritance
System.Object
GetProjectArgs
Inherited Members
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()
Assembly: Pulumi.GitLab.dll
Syntax
public sealed class GetProjectArgs : InvokeArgs
Constructors
View Source
GetProjectArgs()
Declaration
Properties
View Source
Archived
Whether the project is in read-only mode (archived).
Declaration
public bool? Archived { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
View Source
DefaultBranch
The default branch for the project.
Declaration
public string DefaultBranch { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
Description
A description of the project.
Declaration
public string Description { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
HttpUrlToRepo
URL that can be provided to git clone to clone the
repository via HTTP.
Declaration
public string HttpUrlToRepo { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
Id
The integer that uniquely identifies the project within the gitlab install.
Declaration
public int Id { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
View Source
IssuesEnabled
Enable issue tracking for the project.
Declaration
public bool? IssuesEnabled { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
View Source
LfsEnabled
Enable LFS for the project.
Declaration
public bool? LfsEnabled { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
View Source
MergeRequestsEnabled
Enable merge requests for the project.
Declaration
public bool? MergeRequestsEnabled { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
View Source
Name
Declaration
public string Name { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
NamespaceId
The namespace (group or user) of the project. Defaults to your user.
See gitlab..Group for an example.
Declaration
public int? NamespaceId { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Int32> |
|
View Source
Path
The path of the repository.
Declaration
public string Path { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
PipelinesEnabled
Enable pipelines for the project.
Declaration
public bool? PipelinesEnabled { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
View Source
RequestAccessEnabled
Allow users to request member access.
Declaration
public bool? RequestAccessEnabled { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
View Source
RunnersToken
Registration token to use during runner setup.
Declaration
public string RunnersToken { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
SnippetsEnabled
Enable snippets for the project.
Declaration
public bool? SnippetsEnabled { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
View Source
SshUrlToRepo
URL that can be provided to git clone to clone the
repository via SSH.
Declaration
public string SshUrlToRepo { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
VisibilityLevel
Repositories are created as private by default.
Declaration
public string VisibilityLevel { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
WebUrl
URL that can be used to find the project in a browser.
Declaration
public string WebUrl { get; set; }
Property Value
| Type |
Description |
| System.String |
|
View Source
WikiEnabled
Enable wiki for the project.
Declaration
public bool? WikiEnabled { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|