merge: testing → main (reconcile 2-week divergence)
This commit is contained in:
29
decnet/web/db/models/deploy.py
Normal file
29
decnet/web/db/models/deploy.py
Normal file
@@ -0,0 +1,29 @@
|
||||
"""Fleet deploy + mutate-interval request DTOs."""
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field as PydanticField
|
||||
|
||||
from decnet.models import IniContent
|
||||
|
||||
|
||||
class MutateIntervalRequest(BaseModel):
|
||||
# Human-readable duration: <number><unit> where unit is m(inutes), d(ays), M(onths), y/Y(ears).
|
||||
# Minimum granularity is 1 minute. Seconds are not accepted.
|
||||
mutate_interval: Optional[str] = PydanticField(None, pattern=r"^[1-9]\d*[mdMyY]$")
|
||||
|
||||
|
||||
class DeployIniRequest(BaseModel):
|
||||
model_config = ConfigDict(extra="forbid")
|
||||
# This field now enforces strict INI structure during Pydantic initialization.
|
||||
# The OpenAPI schema correctly shows it as a required string.
|
||||
ini_content: IniContent = PydanticField(..., description="A valid INI formatted string")
|
||||
|
||||
|
||||
class DeployResponse(BaseModel):
|
||||
message: str
|
||||
mode: str
|
||||
|
||||
|
||||
class PurgeResponse(BaseModel):
|
||||
message: str
|
||||
deleted: dict[str, int]
|
||||
Reference in New Issue
Block a user