@kubernetes/client-node
Version:
NodeJS client for kubernetes
50 lines (49 loc) • 1.29 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.
*/
/**
* DeviceAttribute must have exactly one field set.
*/
export declare class V1alpha3DeviceAttribute {
/**
* BoolValue is a true/false value.
*/
'bool'?: boolean;
/**
* IntValue is a number.
*/
'_int'?: number;
/**
* StringValue is a string. Must not be longer than 64 characters.
*/
'string'?: string;
/**
* VersionValue is a semantic version according to semver.org spec 2.0.0. Must not be longer than 64 characters.
*/
'version'?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}