Skip to content

Commit

Permalink
Merge pull request #65 from vsmalladi/fix-models
Browse files Browse the repository at this point in the history
Add in 3 fields missing in the models for tes.
  • Loading branch information
lbeckman314 authored Oct 1, 2024
2 parents 201f1d3 + 37aeacf commit 1c228b9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tes/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ class Input(Base):
content: Optional[str] = attrib(
default=None, converter=strconv, validator=optional(instance_of(str))
)
streamable: Optional[bool] = attrib(
default=None, validator=optional(instance_of(bool))
)


@attrs
Expand Down Expand Up @@ -212,6 +215,12 @@ class Resources(Base):
zones: Optional[List[str]] = attrib(
default=None, converter=strconv, validator=optional(list_of(str))
)
backend_parameters: Optional[List[str]] = attrib(
default=None, converter=strconv, validator=optional(instance_of(list))
)
backend_parameters_strict: Optional[bool] = attrib(
default=None, validator=optional(instance_of(bool))
)


@attrs
Expand Down

0 comments on commit 1c228b9

Please sign in to comment.