1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

33 lines
929 B
Python
Raw Normal View History

"""Validate credential configuration variables."""
# Third Party Imports
from pydantic import SecretStr
# Project Imports
2019-10-04 16:54:32 -07:00
from hyperglass.configuration.models._utils import HyperglassModel
from hyperglass.configuration.models._utils import clean_name
2019-10-04 16:54:32 -07:00
class Credential(HyperglassModel):
"""Model for per-credential config in devices.yaml."""
username: str
password: SecretStr
2019-10-04 16:54:32 -07:00
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