UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

26 lines 1.19 kB
/** * 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 */ /** * DataVolumeSourceHTTP can be either an http or https endpoint, with an optional basic auth user name and password, and an optional configmap containing additional CAs */ export type VmDataVolumeSourceHttp = { /** CertConfigMap is a configmap reference, containing a Certificate Authority(CA) public key, and a base64 encoded pem certificate */ certConfigMap?: string; /** ExtraHeaders is a list of strings containing extra headers to include with HTTP transfer requests */ extraHeaders?: string[]; /** SecretExtraHeaders is a list of Secret references, each containing an extra HTTP header that may include sensitive information */ secretExtraHeaders?: string[]; /** SecretRef A Secret reference, the secret should contain accessKeyId (user name) base64 encoded, and secretKey (password) also base64 encoded */ secretRef?: string; /** URL is the URL of the http(s) endpoint */ url: string; }; //# sourceMappingURL=vmDataVolumeSourceHttp.d.ts.map