/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: v1.34.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * DeviceAttribute must have exactly one field set. */ export declare class V1beta1DeviceAttribute { /** * BoolValue is a true/false value. */ 'bool'?: boolean; /** * IntValue is a number. */ '_int'?: number; /** * StringValue is a string. Must not be longer than 64 characters. */ 'string'?: string; /** * VersionValue is a semantic version according to semver.org spec 2.0.0. Must not be longer than 64 characters. */ 'version'?: 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(); }