mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
33 lines
929 B
Python
33 lines
929 B
Python
"""Validate credential configuration variables."""
|
|
|
|
# Third Party Imports
|
|
from pydantic import SecretStr
|
|
|
|
# Project Imports
|
|
from hyperglass.configuration.models._utils import HyperglassModel
|
|
from hyperglass.configuration.models._utils import clean_name
|
|
|
|
|
|
class Credential(HyperglassModel):
|
|
"""Model for per-credential config in devices.yaml."""
|
|
|
|
username: str
|
|
password: SecretStr
|
|
|
|
|
|
class Credentials(HyperglassModel):
|
|
"""Base model for credentials class."""
|
|
|
|
@classmethod
|
|
def import_params(cls, input_params):
|
|
"""
|
|
Imports passed dict from YAML config, removes unsupported
|
|
characters from device names, dynamically sets attributes for
|
|
the credentials class.
|
|
"""
|
|
obj = Credentials()
|
|
for (credname, params) in input_params.items():
|
|
cred = clean_name(credname)
|
|
setattr(Credentials, cred, Credential(**params))
|
|
return obj
|