@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
20 lines • 823 B
JavaScript
import { modelToGroupVersionKind, modelToRef } from '../modelUtils';
const ClusterServiceVersionModel = {
kind: 'ClusterServiceVersion',
label: 'ClusterServiceVersion',
labelKey: 'ClusterServiceVersion',
labelPlural: 'ClusterServiceVersions',
labelPluralKey: 'ClusterServiceVersions',
apiGroup: 'operators.coreos.com',
apiVersion: 'v1alpha1',
abbr: 'CSV',
namespaced: true,
crd: true,
plural: 'clusterserviceversions',
propagationPolicy: 'Foreground',
legacyPluralURL: true,
};
export const ClusterServiceVersionModelGroupVersionKind = modelToGroupVersionKind(ClusterServiceVersionModel);
export const ClusterServiceVersionModelRef = modelToRef(ClusterServiceVersionModel);
export default ClusterServiceVersionModel;
//# sourceMappingURL=ClusterServiceVersionModel.js.map