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