@kubernetes/client-node
Version:
NodeJS client for kubernetes
44 lines (43 loc) • 1.42 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.32.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 { V1beta1OpaqueDeviceConfiguration } from '../models/V1beta1OpaqueDeviceConfiguration.js';
/**
* DeviceAllocationConfiguration gets embedded in an AllocationResult.
*/
export declare class V1beta1DeviceAllocationConfiguration {
'opaque'?: V1beta1OpaqueDeviceConfiguration;
/**
* Requests lists the names of requests where the configuration applies. If empty, its applies to all requests.
*/
'requests'?: Array<string>;
/**
* 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();
}