UNPKG

kubernetes-models

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