UNPKG

kubernetes-models

Version:
24 lines (23 loc) 904 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IoK8sApiStorageV1CSINodeList = exports.CSINodeList = void 0; const base_1 = require("@kubernetes-models/base"); const IoK8sApiStorageV1CSINodeList_1 = require("../../_schemas/IoK8sApiStorageV1CSINodeList.js"); /** * CSINodeList is a collection of CSINode objects. */ class CSINodeList extends base_1.Model { constructor(data) { super({ apiVersion: CSINodeList.apiVersion, kind: CSINodeList.kind, ...data }); } } exports.CSINodeList = CSINodeList; exports.IoK8sApiStorageV1CSINodeList = CSINodeList; CSINodeList.apiVersion = "storage.k8s.io/v1"; CSINodeList.kind = "CSINodeList"; CSINodeList.is = (0, base_1.createTypeMetaGuard)(CSINodeList); (0, base_1.setSchema)(CSINodeList, "io.k8s.api.storage.v1.CSINodeList", IoK8sApiStorageV1CSINodeList_1.addSchema);