@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.25 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.
*/
/**
* NodeFeatures describes the set of features implemented by the CRI implementation. The features contained in the NodeFeatures should depend only on the cri implementation independent of runtime handlers.
* @export
* @interface IoK8sApiCoreV1NodeFeatures
*/
export interface IoK8sApiCoreV1NodeFeatures {
/**
* SupplementalGroupsPolicy is set to true if the runtime supports SupplementalGroupsPolicy and ContainerUser.
* @type {boolean}
* @memberof IoK8sApiCoreV1NodeFeatures
*/
supplementalGroupsPolicy?: boolean;
}
export declare function IoK8sApiCoreV1NodeFeaturesFromJSON(json: any): IoK8sApiCoreV1NodeFeatures;
export declare function IoK8sApiCoreV1NodeFeaturesFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1NodeFeatures;
export declare function IoK8sApiCoreV1NodeFeaturesToJSON(value?: IoK8sApiCoreV1NodeFeatures | null): any;