/** * 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 { V1alpha2NamedResourcesAttribute } from '../models/V1alpha2NamedResourcesAttribute.js'; /** * NamedResourcesInstance represents one individual hardware instance that can be selected based on its attributes. */ export declare class V1alpha2NamedResourcesInstance { /** * Attributes defines the attributes of this resource instance. The name of each attribute must be unique. */ 'attributes'?: Array; /** * Name is unique identifier among all resource instances managed by the driver on the node. It must be a DNS subdomain. */ '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(); }