/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: v1.33.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1alpha3BasicDevice } from '../models/V1alpha3BasicDevice.js'; /** * Device represents one individual hardware instance that can be selected based on its attributes. Besides the name, exactly one field must be set. */ export declare class V1alpha3Device { 'basic'?: V1alpha3BasicDevice; /** * Name is unique identifier among all devices managed by the driver in the pool. It must be a DNS label. */ 'name': string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }