Spec#

pydantic model phalanx.models.argocd.Spec#

The specification of an ArgoCD application.

Parameters:

data (Any)

Show JSON schema
{
   "title": "Spec",
   "description": "The specification of an ArgoCD application.",
   "type": "object",
   "properties": {
      "source": {
         "$ref": "#/$defs/Source"
      }
   },
   "$defs": {
      "Source": {
         "description": "Info about where an ArgoCD application is synced from.",
         "properties": {
            "targetRevision": {
               "title": "Targetrevision",
               "type": "string"
            }
         },
         "required": [
            "targetRevision"
         ],
         "title": "Source",
         "type": "object"
      }
   },
   "required": [
      "source"
   ]
}

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 source: Source [Required]#