VaultToken#
- pydantic model phalanx.models.vault.VaultToken#
Newly-created Vault token for secret access.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "VaultToken", "description": "Newly-created Vault token for secret access.", "type": "object", "properties": { "display_name": { "title": "Display Name", "type": "string" }, "accessor": { "title": "Accessor", "type": "string" }, "expires": { "title": "Expires", "type": "string", "format": "date-time" }, "policies": { "title": "Policies", "type": "array", "items": { "type": "string" } }, "token": { "title": "Token", "type": "string" } }, "required": [ "display_name", "accessor", "expires", "policies", "token" ] }
- Fields: