92 lines
2.3 KiB
JavaScript
92 lines
2.3 KiB
JavaScript
"use strict";
|
|
/**
|
|
* Kubernetes
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: v1.22.2
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.V1PodStatus = void 0;
|
|
/**
|
|
* PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.
|
|
*/
|
|
class V1PodStatus {
|
|
static getAttributeTypeMap() {
|
|
return V1PodStatus.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1PodStatus = V1PodStatus;
|
|
V1PodStatus.discriminator = undefined;
|
|
V1PodStatus.attributeTypeMap = [
|
|
{
|
|
"name": "conditions",
|
|
"baseName": "conditions",
|
|
"type": "Array<V1PodCondition>"
|
|
},
|
|
{
|
|
"name": "containerStatuses",
|
|
"baseName": "containerStatuses",
|
|
"type": "Array<V1ContainerStatus>"
|
|
},
|
|
{
|
|
"name": "ephemeralContainerStatuses",
|
|
"baseName": "ephemeralContainerStatuses",
|
|
"type": "Array<V1ContainerStatus>"
|
|
},
|
|
{
|
|
"name": "hostIP",
|
|
"baseName": "hostIP",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "initContainerStatuses",
|
|
"baseName": "initContainerStatuses",
|
|
"type": "Array<V1ContainerStatus>"
|
|
},
|
|
{
|
|
"name": "message",
|
|
"baseName": "message",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "nominatedNodeName",
|
|
"baseName": "nominatedNodeName",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "phase",
|
|
"baseName": "phase",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "podIP",
|
|
"baseName": "podIP",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "podIPs",
|
|
"baseName": "podIPs",
|
|
"type": "Array<V1PodIP>"
|
|
},
|
|
{
|
|
"name": "qosClass",
|
|
"baseName": "qosClass",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "reason",
|
|
"baseName": "reason",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "startTime",
|
|
"baseName": "startTime",
|
|
"type": "Date"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1PodStatus.js.map
|