@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
35 lines (34 loc) • 1.45 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 { IoK8sApiCoreV1NodeSelector, IoK8sApiResourceV1alpha3DeviceAllocationResult } from './';
/**
* AllocationResult contains attributes of an allocated resource.
* @export
* @interface IoK8sApiResourceV1alpha3AllocationResult
*/
export interface IoK8sApiResourceV1alpha3AllocationResult {
/**
*
* @type {IoK8sApiResourceV1alpha3DeviceAllocationResult}
* @memberof IoK8sApiResourceV1alpha3AllocationResult
*/
devices?: IoK8sApiResourceV1alpha3DeviceAllocationResult;
/**
*
* @type {IoK8sApiCoreV1NodeSelector}
* @memberof IoK8sApiResourceV1alpha3AllocationResult
*/
nodeSelector?: IoK8sApiCoreV1NodeSelector;
}
export declare function IoK8sApiResourceV1alpha3AllocationResultFromJSON(json: any): IoK8sApiResourceV1alpha3AllocationResult;
export declare function IoK8sApiResourceV1alpha3AllocationResultFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiResourceV1alpha3AllocationResult;
export declare function IoK8sApiResourceV1alpha3AllocationResultToJSON(value?: IoK8sApiResourceV1alpha3AllocationResult | null): any;