GafaelfawrGitHubTeam#

pydantic model phalanx.models.environments.GafaelfawrGitHubTeam#

Designates a GitHub team for use as a Gafaelfawr group.

Parameters:

data (Any) –

Show JSON schema
{
   "title": "GafaelfawrGitHubTeam",
   "description": "Designates a GitHub team for use as a Gafaelfawr group.",
   "type": "object",
   "properties": {
      "organization": {
         "title": "Organization",
         "type": "string"
      },
      "team": {
         "title": "Team",
         "type": "string"
      }
   },
   "required": [
      "organization",
      "team"
   ]
}

Fields:
field organization: str [Required]#

GitHub organization.

field team: str [Required]#

GitHub team within that organization.

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.