Type alias ListAuditLogsData

ListAuditLogsData: {
    actionKind?: "Create" | "Update" | "Delete" | "Execute";
    after?: string;
    before?: string;
    operation?: string;
    page?: number;
    perPage?: number;
    resource?: string;
    username?: string;
    workspace: string;
}

Type declaration

  • Optional actionKind?: "Create" | "Update" | "Delete" | "Execute"

    filter on type of operation

  • Optional after?: string

    filter on created after (exclusive) timestamp

  • Optional before?: string

    filter on created before (exclusive) timestamp

  • Optional operation?: string

    filter on exact or prefix name of operation

  • Optional page?: number

    which page to return (start at 1, default 1)

  • Optional perPage?: number

    number of items to return for a given page (default 30, max 100)

  • Optional resource?: string

    filter on exact or prefix name of resource

  • Optional username?: string

    filter on exact username of user

  • workspace: string