/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: v1.30.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1alpha2NamedResourcesIntSlice } from '../models/V1alpha2NamedResourcesIntSlice.js'; import { V1alpha2NamedResourcesStringSlice } from '../models/V1alpha2NamedResourcesStringSlice.js'; /** * NamedResourcesAttribute is a combination of an attribute name and its value. */ export declare class V1alpha2NamedResourcesAttribute { /** * BoolValue is a true/false value. */ 'bool'?: boolean; /** * IntValue is a 64-bit integer. */ '_int'?: number; 'intSlice'?: V1alpha2NamedResourcesIntSlice; /** * Name is unique identifier among all resource instances managed by the driver on the node. It must be a DNS subdomain. */ 'name': string; /** * QuantityValue is a quantity. */ 'quantity'?: string; /** * StringValue is a string. */ 'string'?: string; 'stringSlice'?: V1alpha2NamedResourcesStringSlice; /** * VersionValue is a semantic version according to semver.org spec 2.0.0. */ '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(); }