getProjectTags

The gitlab.getProjectTags data source allows details of project tags to be retrieved by some search criteria. Upstream API: GitLab REST API docs

Return

A collection of values returned by getProjectTags.

Parameters

argument

A collection of arguments for invoking getProjectTags.


suspend fun getProjectTags(orderBy: String? = null, project: String, search: String? = null, sort: String? = null): GetProjectTagsResult

Return

A collection of values returned by getProjectTags.

Parameters

orderBy

Return tags ordered by name or updated fields. Default is updated.

project

The ID or URL-encoded path of the project owned by the authenticated user.

search

Return list of tags matching the search criteria. You can use ^term and term$ to find tags that begin and end with term respectively. No other regular expressions are supported.

sort

Return tags sorted in asc or desc order. Default is desc.

See also


Return

A collection of values returned by getProjectTags.

Parameters

argument

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

See also