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

57 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.V1RuntimeClass = void 0;
/**
* RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/
*/
class V1RuntimeClass {
static getAttributeTypeMap() {
return V1RuntimeClass.attributeTypeMap;
}
}
exports.V1RuntimeClass = V1RuntimeClass;
V1RuntimeClass.discriminator = undefined;
V1RuntimeClass.attributeTypeMap = [
{
"name": "apiVersion",
"baseName": "apiVersion",
"type": "string"
},
{
"name": "handler",
"baseName": "handler",
"type": "string"
},
{
"name": "kind",
"baseName": "kind",
"type": "string"
},
{
"name": "metadata",
"baseName": "metadata",
"type": "V1ObjectMeta"
},
{
"name": "overhead",
"baseName": "overhead",
"type": "V1Overhead"
},
{
"name": "scheduling",
"baseName": "scheduling",
"type": "V1Scheduling"
}
];
//# sourceMappingURL=v1RuntimeClass.js.map