getProject

The gitlab.Project data source allows details of a project to be retrieved by either its ID or its path with namespace. Upstream API: GitLab REST API docs

Return

A collection of values returned by getProject.

Parameters

argument

A collection of arguments for invoking getProject.


suspend fun getProject(ciDefaultGitDepth: Int? = null, id: String? = null, pathWithNamespace: String? = null, publicBuilds: Boolean? = null): GetProjectResult

Return

A collection of values returned by getProject.

Parameters

ciDefaultGitDepth

Default number of revisions for shallow cloning.

id

The integer that uniquely identifies the project within the gitlab install.

pathWithNamespace

The path of the repository with namespace.

publicBuilds

If true, jobs can be viewed by non-project members.

See also


suspend fun getProject(argument: suspend GetProjectPlainArgsBuilder.() -> Unit): GetProjectResult

Return

A collection of values returned by getProject.

Parameters

argument

Builder for com.pulumi.gitlab.kotlin.inputs.GetProjectPlainArgs.

See also