/**
 * Copyright (c) Spectro Cloud
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * Palette APIs - 4.7
 * OpenAPI spec version: v1
 */
import type { AuditsListActionType } from './auditsListActionType';
export type AuditsListParams = {
    /**
     * Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.
     */
    startTime?: string;
    /**
     * Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.
     */
    endTime?: string;
    /**
     * Specify the user uid, to retrieve the specific user audit logs
     */
    userUid?: string;
    /**
     * Specify the project uid, to retrieve the specific project audit logs
     */
    projectUid?: string;
    /**
     * Specify the tenant uid, to retrieve the specific tenant audit logs
     */
    tenantUid?: string;
    /**
     * Specify the resource name, to retrieve the specific resource audit logs
     */
    resourceKind?: string;
    /**
     * Specify the resource uid, to retrieve the specific resource audit logs
     */
    resourceUid?: string;
    actionType?: AuditsListActionType;
    /**
     * limit is a maximum number of responses to return for a list call. Default and maximum value of the limit is 50.
    If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results.
     */
    limit?: number;
    /**
     * offset is the next index number from which the response will start. The response offset value can be used along with continue token for the pagination.
     */
    offset?: number;
    /**
     * continue token to paginate the subsequent data items
     */
    continue?: string;
};
//# sourceMappingURL=auditsListParams.d.ts.map