/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V230DevfileComponentsItemsOpenshiftEndpoints } from '../models/V230DevfileComponentsItemsOpenshiftEndpoints'; import { HttpFile } from '../http/http'; /** * Allows importing into the devworkspace the OpenShift resources defined in a given manifest. For example this allows reusing the OpenShift definitions used to deploy some runtime components in production. */ export class V230DevfileComponentsItemsOpenshift { /** * Defines if the component should be deployed during startup. Default value is `false` */ 'deployByDefault'?: boolean; 'endpoints'?: Array; /** * Inlined manifest */ 'inlined'?: string; /** * Location in a file fetched from a uri. */ 'uri'?: string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "deployByDefault", "baseName": "deployByDefault", "type": "boolean", "format": "" }, { "name": "endpoints", "baseName": "endpoints", "type": "Array", "format": "" }, { "name": "inlined", "baseName": "inlined", "type": "string", "format": "" }, { "name": "uri", "baseName": "uri", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return V230DevfileComponentsItemsOpenshift.attributeTypeMap; } public constructor() { } }