UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

29 lines 991 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * 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