RlsOperation

Operations an RLS policy can apply to. Mirrors PostgreSQL's FOR { ALL | SELECT | INSERT | UPDATE | DELETE } clause.

public enum RlsOperation

Values

Name Description
All Applies to all DML operations.
Select Applies to SELECT only.
Insert Applies to INSERT only.
Update Applies to UPDATE only.
Delete Applies to DELETE only.