UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

102 lines (101 loc) 4.6 kB
/** * 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 { IoK8sApiResourceV1beta1NetworkDeviceData, IoK8sApimachineryPkgApisMetaV1Condition } from './'; /** * AllocatedDeviceStatus contains the status of an allocated device, if the driver chooses to report it. This may include driver-specific information. * @export * @interface IoK8sApiResourceV1beta1AllocatedDeviceStatus */ export interface IoK8sApiResourceV1beta1AllocatedDeviceStatus { /** * Conditions contains the latest observation of the device's state. If the device has been configured according to the class and claim config references, the `Ready` condition should be True. * * Must not contain more than 8 entries. * @type {Array<IoK8sApimachineryPkgApisMetaV1Condition>} * @memberof IoK8sApiResourceV1beta1AllocatedDeviceStatus */ conditions?: Array<IoK8sApimachineryPkgApisMetaV1Condition>; /** * RawExtension is used to hold extensions in external versions. * * To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. * * // Internal package: * * type MyAPIObject struct { * runtime.TypeMeta `json:",inline"` * MyPlugin runtime.Object `json:"myPlugin"` * } * * type PluginA struct { * AOption string `json:"aOption"` * } * * // External package: * * type MyAPIObject struct { * runtime.TypeMeta `json:",inline"` * MyPlugin runtime.RawExtension `json:"myPlugin"` * } * * type PluginA struct { * AOption string `json:"aOption"` * } * * // On the wire, the JSON will look something like this: * * { * "kind":"MyAPIObject", * "apiVersion":"v1", * "myPlugin": { * "kind":"PluginA", * "aOption":"foo", * }, * } * * So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.) * @type {object} * @memberof IoK8sApiResourceV1beta1AllocatedDeviceStatus */ data?: object; /** * Device references one device instance via its name in the driver's resource pool. It must be a DNS label. * @type {string} * @memberof IoK8sApiResourceV1beta1AllocatedDeviceStatus */ device: string; /** * Driver specifies the name of the DRA driver whose kubelet plugin should be invoked to process the allocation once the claim is needed on a node. * * Must be a DNS subdomain and should end with a DNS domain owned by the vendor of the driver. * @type {string} * @memberof IoK8sApiResourceV1beta1AllocatedDeviceStatus */ driver: string; /** * * @type {IoK8sApiResourceV1beta1NetworkDeviceData} * @memberof IoK8sApiResourceV1beta1AllocatedDeviceStatus */ networkData?: IoK8sApiResourceV1beta1NetworkDeviceData; /** * This name together with the driver name and the device name field identify which device was allocated (`<driver name>/<pool name>/<device name>`). * * Must not be longer than 253 characters and may contain one or more DNS sub-domains separated by slashes. * @type {string} * @memberof IoK8sApiResourceV1beta1AllocatedDeviceStatus */ pool: string; } export declare function IoK8sApiResourceV1beta1AllocatedDeviceStatusFromJSON(json: any): IoK8sApiResourceV1beta1AllocatedDeviceStatus; export declare function IoK8sApiResourceV1beta1AllocatedDeviceStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiResourceV1beta1AllocatedDeviceStatus; export declare function IoK8sApiResourceV1beta1AllocatedDeviceStatusToJSON(value?: IoK8sApiResourceV1beta1AllocatedDeviceStatus | null): any;