GafaelfawrGitHubGroup#

pydantic model phalanx.models.environments.GafaelfawrGitHubGroup#

A group based on a GitHub team.

Parameters:

data (Any) –

Show JSON schema
{
   "title": "GafaelfawrGitHubGroup",
   "description": "A group based on a GitHub team.",
   "type": "object",
   "properties": {
      "github": {
         "$ref": "#/definitions/GafaelfawrGitHubTeam"
      }
   },
   "required": [
      "github"
   ],
   "definitions": {
      "GafaelfawrGitHubTeam": {
         "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 github: GafaelfawrGitHubTeam [Required]#

Specification for the team.

to_rst()#
Return type:

str