mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
13 lines
302 B
Python
13 lines
302 B
Python
"""hyperglass-agent certificate import models."""
|
|
# Standard Library
|
|
from typing import Union
|
|
|
|
# Third Party
|
|
from pydantic import BaseModel, StrictStr, StrictBytes
|
|
|
|
|
|
class EncodedRequest(BaseModel):
|
|
"""Certificate request model."""
|
|
|
|
device: StrictStr
|
|
encoded: Union[StrictStr, StrictBytes]
|