@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
46 lines (45 loc) • 1.56 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.
*/
/**
* SELinuxOptions are the labels to be applied to the container
* @export
* @interface IoK8sApiCoreV1SELinuxOptions
*/
export interface IoK8sApiCoreV1SELinuxOptions {
/**
* Level is SELinux level label that applies to the container.
* @type {string}
* @memberof IoK8sApiCoreV1SELinuxOptions
*/
level?: string;
/**
* Role is a SELinux role label that applies to the container.
* @type {string}
* @memberof IoK8sApiCoreV1SELinuxOptions
*/
role?: string;
/**
* Type is a SELinux type label that applies to the container.
* @type {string}
* @memberof IoK8sApiCoreV1SELinuxOptions
*/
type?: string;
/**
* User is a SELinux user label that applies to the container.
* @type {string}
* @memberof IoK8sApiCoreV1SELinuxOptions
*/
user?: string;
}
export declare function IoK8sApiCoreV1SELinuxOptionsFromJSON(json: any): IoK8sApiCoreV1SELinuxOptions;
export declare function IoK8sApiCoreV1SELinuxOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1SELinuxOptions;
export declare function IoK8sApiCoreV1SELinuxOptionsToJSON(value?: IoK8sApiCoreV1SELinuxOptions | null): any;