/** * 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 { HttpFile } from '../http/http'; /** * Volume that should be mounted to a component container */ export class V1alpha2DevWorkspaceTemplateSpecComponentsItemsContainerVolumeMounts { /** * The volume mount name is the name of an existing `Volume` component. If several containers mount the same volume name then they will reuse the same volume and will be able to access to the same files. */ 'name': string; /** * The path in the component container where the volume should be mounted. If not path is mentioned, default path is the is `/`. */ 'path'?: string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "path", "baseName": "path", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceTemplateSpecComponentsItemsContainerVolumeMounts.attributeTypeMap; } public constructor() { } }