/** * 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 { V1alpha3OpaqueDeviceConfiguration } from './v1alpha3OpaqueDeviceConfiguration'; /** * DeviceAllocationConfiguration gets embedded in an AllocationResult. */ export declare class V1alpha3DeviceAllocationConfiguration { 'opaque'?: V1alpha3OpaqueDeviceConfiguration; /** * Requests lists the names of requests where the configuration applies. If empty, its applies to all requests. */ 'requests'?: Array; /** * Source records whether the configuration comes from a class and thus is not something that a normal user would have been able to set or from a claim. */ 'source': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }