@kubernetes/client-node
Version:
NodeJS client for kubernetes
39 lines (38 loc) • 1.19 kB
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 { V1Condition } from './v1Condition';
import { V1beta1TypeChecking } from './v1beta1TypeChecking';
/**
* ValidatingAdmissionPolicyStatus represents the status of an admission validation policy.
*/
export declare class V1beta1ValidatingAdmissionPolicyStatus {
/**
* The conditions represent the latest available observations of a policy\'s current state.
*/
'conditions'?: Array<V1Condition>;
/**
* The generation observed by the controller.
*/
'observedGeneration'?: number;
'typeChecking'?: V1beta1TypeChecking;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}