@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
35 lines (34 loc) • 1.46 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { IoK8sApiCoreV1NamespaceCondition } from './';
/**
* NamespaceStatus is information about the current status of a Namespace.
* @export
* @interface IoK8sApiCoreV1NamespaceStatus
*/
export interface IoK8sApiCoreV1NamespaceStatus {
/**
* Represents the latest available observations of a namespace's current state.
* @type {Array<IoK8sApiCoreV1NamespaceCondition>}
* @memberof IoK8sApiCoreV1NamespaceStatus
*/
conditions?: Array<IoK8sApiCoreV1NamespaceCondition>;
/**
* Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
* @type {string}
* @memberof IoK8sApiCoreV1NamespaceStatus
*/
phase?: string;
}
export declare function IoK8sApiCoreV1NamespaceStatusFromJSON(json: any): IoK8sApiCoreV1NamespaceStatus;
export declare function IoK8sApiCoreV1NamespaceStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1NamespaceStatus;
export declare function IoK8sApiCoreV1NamespaceStatusToJSON(value?: IoK8sApiCoreV1NamespaceStatus | null): any;