77 lines
2.0 KiB
JavaScript
77 lines
2.0 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.V1DaemonSetStatus = void 0;
|
|
/**
|
|
* DaemonSetStatus represents the current status of a daemon set.
|
|
*/
|
|
class V1DaemonSetStatus {
|
|
static getAttributeTypeMap() {
|
|
return V1DaemonSetStatus.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1DaemonSetStatus = V1DaemonSetStatus;
|
|
V1DaemonSetStatus.discriminator = undefined;
|
|
V1DaemonSetStatus.attributeTypeMap = [
|
|
{
|
|
"name": "collisionCount",
|
|
"baseName": "collisionCount",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "conditions",
|
|
"baseName": "conditions",
|
|
"type": "Array<V1DaemonSetCondition>"
|
|
},
|
|
{
|
|
"name": "currentNumberScheduled",
|
|
"baseName": "currentNumberScheduled",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "desiredNumberScheduled",
|
|
"baseName": "desiredNumberScheduled",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "numberAvailable",
|
|
"baseName": "numberAvailable",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "numberMisscheduled",
|
|
"baseName": "numberMisscheduled",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "numberReady",
|
|
"baseName": "numberReady",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "numberUnavailable",
|
|
"baseName": "numberUnavailable",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "observedGeneration",
|
|
"baseName": "observedGeneration",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "updatedNumberScheduled",
|
|
"baseName": "updatedNumberScheduled",
|
|
"type": "number"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1DaemonSetStatus.js.map
|