@datatr-ux/ovhcloud-types
Version: 
TypeScript types for OVHCloud projects
28 lines • 895 B
TypeScript
import { BandwidthEnum } from './service/BandwidthEnum';
import { PortEnum } from './service/PortEnum';
import { ProviderEnum } from './service/ProviderEnum';
import { StatusEnum } from './service/StatusEnum';
/** OVHcloud Connect Service */
export interface Service {
    /** Service bandwidth */
    bandwidth: BandwidthEnum;
    /** Service description */
    description: string;
    /** List of interfaces linked to a service */
    interfaceList: number[];
    /** Pop reference where the service is delivered */
    pop: string;
    /** Port quantity */
    portQuantity: PortEnum;
    /** Product name of the service */
    product: string;
    /** Service provider */
    provider: ProviderEnum;
    /** Service status */
    status: StatusEnum;
    /** Service UUID */
    uuid: string;
    /** vrack linked to the service */
    vrack?: string;
}
//# sourceMappingURL=Service.d.ts.map