/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: release-1.31 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1alpha3DeviceClaimConfiguration } from './v1alpha3DeviceClaimConfiguration'; import { V1alpha3DeviceConstraint } from './v1alpha3DeviceConstraint'; import { V1alpha3DeviceRequest } from './v1alpha3DeviceRequest'; /** * DeviceClaim defines how to request devices with a ResourceClaim. */ export declare class V1alpha3DeviceClaim { /** * This field holds configuration for multiple potential drivers which could satisfy requests in this claim. It is ignored while allocating the claim. */ 'config'?: Array; /** * These constraints must be satisfied by the set of devices that get allocated for the claim. */ 'constraints'?: Array; /** * Requests represent individual requests for distinct devices which must all be satisfied. If empty, nothing needs to be allocated. */ 'requests'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }