import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import * as LoggingAPI from 'cloudflare/resources/zero-trust/gateway/logging';
export declare class Logging extends APIResource {
    /**
     * Updates logging settings for the current Zero Trust account.
     */
    update(params: LoggingUpdateParams, options?: Core.RequestOptions): Core.APIPromise<ZeroTrustGatewayGatewayAccountLoggingSettings>;
    /**
     * Fetches the current logging settings for Zero Trust account.
     */
    get(params: LoggingGetParams, options?: Core.RequestOptions): Core.APIPromise<ZeroTrustGatewayGatewayAccountLoggingSettings>;
}
export interface ZeroTrustGatewayGatewayAccountLoggingSettings {
    /**
     * Redact personally identifiable information from activity logging (PII fields
     * are: source IP, user email, user ID, device ID, URL, referrer, user agent).
     */
    redact_pii?: boolean;
    /**
     * Logging settings by rule type.
     */
    settings_by_rule_type?: ZeroTrustGatewayGatewayAccountLoggingSettings.SettingsByRuleType;
}
export declare namespace ZeroTrustGatewayGatewayAccountLoggingSettings {
    /**
     * Logging settings by rule type.
     */
    interface SettingsByRuleType {
        /**
         * Logging settings for DNS firewall.
         */
        dns?: unknown;
        /**
         * Logging settings for HTTP/HTTPS firewall.
         */
        http?: unknown;
        /**
         * Logging settings for Network firewall.
         */
        l4?: unknown;
    }
}
export interface LoggingUpdateParams {
    /**
     * Path param:
     */
    account_id: string;
    /**
     * Body param: Redact personally identifiable information from activity logging
     * (PII fields are: source IP, user email, user ID, device ID, URL, referrer, user
     * agent).
     */
    redact_pii?: boolean;
    /**
     * Body param: Logging settings by rule type.
     */
    settings_by_rule_type?: LoggingUpdateParams.SettingsByRuleType;
}
export declare namespace LoggingUpdateParams {
    /**
     * Logging settings by rule type.
     */
    interface SettingsByRuleType {
        /**
         * Logging settings for DNS firewall.
         */
        dns?: unknown;
        /**
         * Logging settings for HTTP/HTTPS firewall.
         */
        http?: unknown;
        /**
         * Logging settings for Network firewall.
         */
        l4?: unknown;
    }
}
export interface LoggingGetParams {
    account_id: string;
}
export declare namespace Logging {
    export import ZeroTrustGatewayGatewayAccountLoggingSettings = LoggingAPI.ZeroTrustGatewayGatewayAccountLoggingSettings;
    export import LoggingUpdateParams = LoggingAPI.LoggingUpdateParams;
    export import LoggingGetParams = LoggingAPI.LoggingGetParams;
}
//# sourceMappingURL=logging.d.ts.map