kubernetes-models
Version:
1 lines • 515 B
JavaScript
import{createTypeMetaGuard,Model,setValidateFunc}from"@kubernetes-models/base";import{validate}from"../../_schemas/IoK8sApiStorageV1CSINodeList.mjs";export class CSINodeList extends Model{constructor(data){super(),this.setDefinedProps({apiVersion:CSINodeList.apiVersion,kind:CSINodeList.kind,...data})}}CSINodeList.apiVersion="storage.k8s.io/v1",CSINodeList.kind="CSINodeList",CSINodeList.is=createTypeMetaGuard(CSINodeList),setValidateFunc(CSINodeList,validate);export{CSINodeList as IoK8sApiStorageV1CSINodeList};