forked from mirrors/thatmattlove-hyperglass
14 lines
303 B
Python
14 lines
303 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]
|