/**
 * Kubernetes
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: unversioned
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { IoK8sApiResourceV1alpha3DeviceClaimConfiguration, IoK8sApiResourceV1alpha3DeviceConstraint, IoK8sApiResourceV1alpha3DeviceRequest } from './';
/**
 * DeviceClaim defines how to request devices with a ResourceClaim.
 * @export
 * @interface IoK8sApiResourceV1alpha3DeviceClaim
 */
export interface IoK8sApiResourceV1alpha3DeviceClaim {
    /**
     * This field holds configuration for multiple potential drivers which could satisfy requests in this claim. It is ignored while allocating the claim.
     * @type {Array<IoK8sApiResourceV1alpha3DeviceClaimConfiguration>}
     * @memberof IoK8sApiResourceV1alpha3DeviceClaim
     */
    config?: Array<IoK8sApiResourceV1alpha3DeviceClaimConfiguration>;
    /**
     * These constraints must be satisfied by the set of devices that get allocated for the claim.
     * @type {Array<IoK8sApiResourceV1alpha3DeviceConstraint>}
     * @memberof IoK8sApiResourceV1alpha3DeviceClaim
     */
    constraints?: Array<IoK8sApiResourceV1alpha3DeviceConstraint>;
    /**
     * Requests represent individual requests for distinct devices which must all be satisfied. If empty, nothing needs to be allocated.
     * @type {Array<IoK8sApiResourceV1alpha3DeviceRequest>}
     * @memberof IoK8sApiResourceV1alpha3DeviceClaim
     */
    requests?: Array<IoK8sApiResourceV1alpha3DeviceRequest>;
}
export declare function IoK8sApiResourceV1alpha3DeviceClaimFromJSON(json: any): IoK8sApiResourceV1alpha3DeviceClaim;
export declare function IoK8sApiResourceV1alpha3DeviceClaimFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiResourceV1alpha3DeviceClaim;
export declare function IoK8sApiResourceV1alpha3DeviceClaimToJSON(value?: IoK8sApiResourceV1alpha3DeviceClaim | null): any;
