@archastro/sdk
    Preparing search index...

    Interface Acl

    An access-control list payload that supports either full replacement or targeted patch operations on a resource's grants.

    interface Acl {
        add?: AclGrant[];
        grants?: AclGrant[];
        remove?: AclRemoveTarget[];
    }
    Index

    Properties

    Properties

    add?: AclGrant[]

    Patch mode: grants to add or merge into the existing list. Cannot be combined with grants.

    grants?: AclGrant[]

    Replace mode: the complete new list of grants that replaces all existing entries. Send an empty array ([]) to clear all grants. Cannot be combined with add or remove.

    remove?: AclRemoveTarget[]

    Patch mode: principals whose grants should be removed from the existing list. Cannot be combined with grants.