Source#

pydantic model phalanx.models.argocd.Source#

Info about where an ArgoCD application is synced from.

Parameters:

data (Any)

Show JSON schema
{
   "title": "Source",
   "description": "Info about where an ArgoCD application is synced from.",
   "type": "object",
   "properties": {
      "targetRevision": {
         "title": "Targetrevision",
         "type": "string"
      }
   },
   "required": [
      "targetRevision"
   ]
}

Config:
  • alias_generator: function = <function to_camel at 0x7f5fa69773d0>

  • populate_by_name: bool = True

  • validate_by_alias: bool = True

  • validate_by_name: bool = True

Fields:
field target_revision: str [Required] (alias 'targetRevision')#