diff --git a/src/example/schema.py b/src/example/schema.py index 47392d6..d0ae38a 100644 --- a/src/example/schema.py +++ b/src/example/schema.py @@ -5,3 +5,11 @@ from pydantic import BaseModel class ExampleSchema(BaseModel): example_field: str another_field: int + +class ClusterCreds(BaseModel): + """A structure to hold basic auth cluster credentials for a cluster""" + username: str + password: str + hostname: str = None + cert_filepath: Path = None + key_filepath: Path = None