/**
 * 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 { ConfigReverseProxyProtocol } from './configReverseProxyProtocol';
/**
 * Describes the reverse proxy configuration
 */
export type ConfigReverseProxy = {
    /** Describes the ca certificate for system's reverse proxy */
    caCert?: string;
    /** Describes the client certificate for system's reverse proxy */
    clientCert?: string;
    /** Describes the client certificate key for system's reverse proxy */
    clientKey?: string;
    /** Describes the system's reverse proxy server port */
    port?: number;
    /** Describes the system's reverse proxy server protocol. Possible values [https, http] */
    protocol?: ConfigReverseProxyProtocol;
    /** Describes the system's reverse proxy server */
    server?: string;
};
//# sourceMappingURL=configReverseProxy.d.ts.map