UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

25 lines 746 B
import { CountryEnum } from '../coreTypes/CountryEnum'; import { ResourceMetadata } from '../iam/ResourceMetadata'; import { IpBlock } from '../IpBlock'; import { RoutedTo } from './RoutedTo'; import { IpTypeEnum } from './IpTypeEnum'; /** Your IP linked to service */ export interface ServiceIpWithIAM { /** */ canBeTerminated: boolean; /** */ country?: CountryEnum; /** Custom description on your ip */ description?: string; /** IAM resource metadata */ iam?: ResourceMetadata; /** */ ip: IpBlock; /** IP block organisation Id */ organisationId?: string; /** Routage information */ routedTo?: RoutedTo; /** */ type: IpTypeEnum; } //# sourceMappingURL=ServiceIpWithIAM.d.ts.map