/* generated using openapi-typescript-codegen -- do no edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { EndpointPortConfig } from './EndpointPortConfig'; /** * Properties that can be configured to access and load balance a service. */ export type EndpointSpec = { /** * The mode of resolution to use for internal load balancing between tasks. * */ Mode?: 'vip' | 'dnsrr'; /** * List of exposed ports that this service is accessible on from the * outside. Ports can only be provided if `vip` resolution mode is used. * */ Ports?: Array; };