/** * 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'; /** * Annotations that should be added to specific resources for this container */ export class V1alpha2DevWorkspaceTemplateSpecParentComponentsItemsPluginComponentsItemsContainerAnnotation { /** * Annotations to be added to deployment */ 'deployment'?: { [key: string]: string; }; /** * Annotations to be added to service */ 'service'?: { [key: string]: string; }; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "deployment", "baseName": "deployment", "type": "{ [key: string]: string; }", "format": "" }, { "name": "service", "baseName": "service", "type": "{ [key: string]: string; }", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceTemplateSpecParentComponentsItemsPluginComponentsItemsContainerAnnotation.attributeTypeMap; } public constructor() { } }