SecretCopyRules#
- pydantic model phalanx.models.secrets.SecretCopyRules#
Rules for copying a secret value from another secret.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "SecretCopyRules", "description": "Rules for copying a secret value from another secret.", "type": "object", "properties": { "application": { "title": "Application", "type": "string" }, "key": { "title": "Key", "type": "string" } }, "required": [ "application", "key" ], "additionalProperties": false }
- Config:
allow_population_by_field_name: bool = True
extra: Extra = Extra.forbid
- Fields: