VaultAppRoleMetadata#
- pydantic model phalanx.models.vault.VaultAppRoleMetadata#
Metadata about a new or existing Vault AppRole.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "VaultAppRoleMetadata", "description": "Metadata about a new or existing Vault AppRole.", "type": "object", "properties": { "role_id": { "title": "Role Id", "type": "string" }, "policies": { "items": { "type": "string" }, "title": "Policies", "type": "array" } }, "required": [ "role_id", "policies" ] }
- Fields:
- field policies: list[str] [Required]#
Policies applied to this AppRole.
- field role_id: str [Required]#
Unique identifier of the AppRole.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding
ComputedFieldInfo
objects.