2021-12-07 13:18:08 -05:00

72 lines
1.8 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.V1Probe = void 0;
/**
* Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
*/
class V1Probe {
static getAttributeTypeMap() {
return V1Probe.attributeTypeMap;
}
}
exports.V1Probe = V1Probe;
V1Probe.discriminator = undefined;
V1Probe.attributeTypeMap = [
{
"name": "exec",
"baseName": "exec",
"type": "V1ExecAction"
},
{
"name": "failureThreshold",
"baseName": "failureThreshold",
"type": "number"
},
{
"name": "httpGet",
"baseName": "httpGet",
"type": "V1HTTPGetAction"
},
{
"name": "initialDelaySeconds",
"baseName": "initialDelaySeconds",
"type": "number"
},
{
"name": "periodSeconds",
"baseName": "periodSeconds",
"type": "number"
},
{
"name": "successThreshold",
"baseName": "successThreshold",
"type": "number"
},
{
"name": "tcpSocket",
"baseName": "tcpSocket",
"type": "V1TCPSocketAction"
},
{
"name": "terminationGracePeriodSeconds",
"baseName": "terminationGracePeriodSeconds",
"type": "number"
},
{
"name": "timeoutSeconds",
"baseName": "timeoutSeconds",
"type": "number"
}
];
//# sourceMappingURL=v1Probe.js.map