@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
29 lines (28 loc) • 1.32 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { IoK8sApiCoreV1DownwardAPIVolumeFile } from './';
/**
* Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
* @export
* @interface IoK8sApiCoreV1DownwardAPIProjection
*/
export interface IoK8sApiCoreV1DownwardAPIProjection {
/**
* Items is a list of DownwardAPIVolume file
* @type {Array<IoK8sApiCoreV1DownwardAPIVolumeFile>}
* @memberof IoK8sApiCoreV1DownwardAPIProjection
*/
items?: Array<IoK8sApiCoreV1DownwardAPIVolumeFile>;
}
export declare function IoK8sApiCoreV1DownwardAPIProjectionFromJSON(json: any): IoK8sApiCoreV1DownwardAPIProjection;
export declare function IoK8sApiCoreV1DownwardAPIProjectionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1DownwardAPIProjection;
export declare function IoK8sApiCoreV1DownwardAPIProjectionToJSON(value?: IoK8sApiCoreV1DownwardAPIProjection | null): any;