GetOrganizationTeamsResult

data class GetOrganizationTeamsResult(val id: String, val resultsPerPage: Int? = null, val rootTeamsOnly: Boolean? = null, val summaryOnly: Boolean? = null, val teams: List<GetOrganizationTeamsTeam>)

A collection of values returned by getOrganizationTeams.

Constructors

Link copied to clipboard
constructor(id: String, resultsPerPage: Int? = null, rootTeamsOnly: Boolean? = null, summaryOnly: Boolean? = null, teams: List<GetOrganizationTeamsTeam>)

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 resultsPerPage: Int? = null

(Optional) Set the number of results per graphql query. Reducing this number can alleviate timeout errors. Accepts a value between 0 - 100. Defaults to 100.

Link copied to clipboard
val rootTeamsOnly: Boolean? = null

(Optional) Only return teams that are at the organization's root, i.e. no nested teams. Defaults to false.

Link copied to clipboard
val summaryOnly: Boolean? = null

(Optional) Exclude the members and repositories of the team from the returned result. Defaults to false.

Link copied to clipboard

(Required) An Array of GitHub Teams. Each team block consists of the fields documented below.