@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.1 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.
*/
/**
* PodSchedulingGate is associated to a Pod to guard its scheduling.
* @export
* @interface IoK8sApiCoreV1PodSchedulingGate
*/
export interface IoK8sApiCoreV1PodSchedulingGate {
/**
* Name of the scheduling gate. Each scheduling gate must have a unique name field.
* @type {string}
* @memberof IoK8sApiCoreV1PodSchedulingGate
*/
name: string;
}
export declare function IoK8sApiCoreV1PodSchedulingGateFromJSON(json: any): IoK8sApiCoreV1PodSchedulingGate;
export declare function IoK8sApiCoreV1PodSchedulingGateFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1PodSchedulingGate;
export declare function IoK8sApiCoreV1PodSchedulingGateToJSON(value?: IoK8sApiCoreV1PodSchedulingGate | null): any;