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

  • OptionalactionKind?:
        | "Create"
        | "Update"
        | "Delete"
        | "Execute"

    filter on type of operation

  • Optionalafter?: string

    filter on created after (exclusive) timestamp

  • Optionalbefore?: string

    filter on created before (exclusive) timestamp

  • Optionaloperation?: string

    filter on exact or prefix name of operation

  • Optionalpage?: number

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

  • OptionalperPage?: number

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

  • Optionalresource?: string

    filter on exact or prefix name of resource

  • Optionalusername?: string

    filter on exact username of user

  • workspace: string