@kubernetes/client-node
Version:
NodeJS client for kubernetes
33 lines (32 loc) • 982 B
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: release-1.28
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { V1beta1ExpressionWarning } from './v1beta1ExpressionWarning';
/**
* TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy
*/
export declare class V1beta1TypeChecking {
/**
* The type checking warnings for each expression.
*/
'expressionWarnings'?: Array<V1beta1ExpressionWarning>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}