@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
47 lines (46 loc) • 2.24 kB
TypeScript
/**
* KubeVirt API
* This is KubeVirt API an add-on for Kubernetes.
*
* The version of the OpenAPI document: 1.0.0
* Contact: kubevirt-dev@googlegroups.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { K8sIoApiCoreV1ObjectFieldSelector, K8sIoApiCoreV1ResourceFieldSelector } from './';
/**
* DownwardAPIVolumeFile represents information to create the file containing the pod field
* @export
* @interface K8sIoApiCoreV1DownwardAPIVolumeFile
*/
export interface K8sIoApiCoreV1DownwardAPIVolumeFile {
/**
*
* @type {K8sIoApiCoreV1ObjectFieldSelector}
* @memberof K8sIoApiCoreV1DownwardAPIVolumeFile
*/
fieldRef?: K8sIoApiCoreV1ObjectFieldSelector;
/**
* Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
* @type {number}
* @memberof K8sIoApiCoreV1DownwardAPIVolumeFile
*/
mode?: number;
/**
* Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'
* @type {string}
* @memberof K8sIoApiCoreV1DownwardAPIVolumeFile
*/
path: string;
/**
*
* @type {K8sIoApiCoreV1ResourceFieldSelector}
* @memberof K8sIoApiCoreV1DownwardAPIVolumeFile
*/
resourceFieldRef?: K8sIoApiCoreV1ResourceFieldSelector;
}
export declare function K8sIoApiCoreV1DownwardAPIVolumeFileFromJSON(json: any): K8sIoApiCoreV1DownwardAPIVolumeFile;
export declare function K8sIoApiCoreV1DownwardAPIVolumeFileFromJSONTyped(json: any, _ignoreDiscriminator: boolean): K8sIoApiCoreV1DownwardAPIVolumeFile;
export declare function K8sIoApiCoreV1DownwardAPIVolumeFileToJSON(value?: K8sIoApiCoreV1DownwardAPIVolumeFile | null): any;