/** * 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'; /** * Dockerfile's Devfile Registry source */ export class V230DevfileParentComponentsItemsImageDockerfileDevfileRegistry { /** * Id in a devfile registry that contains a Dockerfile. The src in the OCI registry required for the Dockerfile build will be downloaded for building the image. */ 'id'?: string; /** * Devfile Registry URL to pull the Dockerfile from when using the Devfile Registry as Dockerfile src. To ensure the Dockerfile gets resolved consistently in different environments, it is recommended to always specify the `devfileRegistryUrl` when `Id` is used. */ 'registryUrl'?: string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "registryUrl", "baseName": "registryUrl", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return V230DevfileParentComponentsItemsImageDockerfileDevfileRegistry.attributeTypeMap; } public constructor() { } }