@kubernetes/client-node
Version:
NodeJS client for kubernetes
44 lines (43 loc) • 1.66 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 { V1alpha3DeviceClassConfiguration } from '../models/V1alpha3DeviceClassConfiguration.js';
import { V1alpha3DeviceSelector } from '../models/V1alpha3DeviceSelector.js';
/**
* DeviceClassSpec is used in a [DeviceClass] to define what can be allocated and how to configure it.
*/
export declare class V1alpha3DeviceClassSpec {
/**
* Config defines configuration parameters that apply to each device that is claimed via this class. Some classses may potentially be satisfied by multiple drivers, so each instance of a vendor configuration applies to exactly one driver. They are passed to the driver, but are not considered while allocating the claim.
*/
'config'?: Array<V1alpha3DeviceClassConfiguration>;
/**
* Each selector must be satisfied by a device which is claimed via this class.
*/
'selectors'?: Array<V1alpha3DeviceSelector>;
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();
}