67 lines
1.6 KiB
JavaScript
67 lines
1.6 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.V1JobStatus = void 0;
|
|
/**
|
|
* JobStatus represents the current state of a Job.
|
|
*/
|
|
class V1JobStatus {
|
|
static getAttributeTypeMap() {
|
|
return V1JobStatus.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1JobStatus = V1JobStatus;
|
|
V1JobStatus.discriminator = undefined;
|
|
V1JobStatus.attributeTypeMap = [
|
|
{
|
|
"name": "active",
|
|
"baseName": "active",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "completedIndexes",
|
|
"baseName": "completedIndexes",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "completionTime",
|
|
"baseName": "completionTime",
|
|
"type": "Date"
|
|
},
|
|
{
|
|
"name": "conditions",
|
|
"baseName": "conditions",
|
|
"type": "Array<V1JobCondition>"
|
|
},
|
|
{
|
|
"name": "failed",
|
|
"baseName": "failed",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "startTime",
|
|
"baseName": "startTime",
|
|
"type": "Date"
|
|
},
|
|
{
|
|
"name": "succeeded",
|
|
"baseName": "succeeded",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "uncountedTerminatedPods",
|
|
"baseName": "uncountedTerminatedPods",
|
|
"type": "V1UncountedTerminatedPods"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1JobStatus.js.map
|