Spaces:
No application file
No application file
File size: 427 Bytes
57c06cb | 1 2 3 4 5 6 7 8 9 10 | from pydantic import BaseModel, Field
from typing import Literal, Dict, Any
class PatchAction(BaseModel):
action_type: Literal["patch"] = "patch"
resource_type: Literal["deployment", "configmap", "service"] = Field(..., description="One of: deployment, configmap, service")
name: str = Field(..., description="Resource name")
patch: Dict[str, Any] = Field(..., description="Fields to update (partial patch)")
|