/** * 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. */ import { V1OpaqueDeviceConfiguration } from '../models/V1OpaqueDeviceConfiguration.js'; /** * DeviceAllocationConfiguration gets embedded in an AllocationResult. */ export declare class V1DeviceAllocationConfiguration { 'opaque'?: V1OpaqueDeviceConfiguration; /** * Requests lists the names of requests where the configuration applies. If empty, its applies to all requests. References to subrequests must include the name of the main request and may include the subrequest using the format
[/]. If just the main request is given, the configuration applies to all subrequests. */ '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 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(); }