certwrangler.state_managers.dummy module#
- class certwrangler.state_managers.dummy.DummyStateManager(*, driver: ~typing.Literal['dummy'], encryption_keys: ~typing.List[~typing.Annotated[~cryptography.fernet.Fernet, ~pydantic.functional_validators.BeforeValidator(func=~certwrangler.types.<lambda>, json_schema_input_type=PydanticUndefined), ~pydantic.json_schema.WithJsonSchema(json_schema={'type': 'string'}, mode=None)]] = <factory>)[source]#
Bases:
StateManagerDummy state manager driver. Mostly used for testing.
- driver: Literal['dummy']#
- list() Dict[str, Dict[str, Any]][source]#
No-op list, just log we were here and return an empty dict.
- delete(entity_class: Literal['account', 'cert'], entity_name: str) None[source]#
No-op delete, just log we were here.
- model_config#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].