GetProjectTagsResult

data class GetProjectTagsResult(val id: String, val orderBy: String? = null, val project: String, val search: String? = null, val sort: String? = null, val tags: List<GetProjectTagsTag>)

A collection of values returned by getProjectTags.

Constructors

Link copied to clipboard
constructor(id: String, orderBy: String? = null, project: String, search: String? = null, sort: String? = null, tags: List<GetProjectTagsTag>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard
val orderBy: String? = null

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

Link copied to clipboard

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

Link copied to clipboard
val search: String? = null

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.

Link copied to clipboard
val sort: String? = null

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

Link copied to clipboard

List of repository tags from a project.