import { _MonthlyTransfer, _UnmarshalledMonthlyTransfer } from "./_MonthlyTransfer"; import { _InstancePortInfo, _UnmarshalledInstancePortInfo } from "./_InstancePortInfo"; /** *

Describes monthly data transfer rates and port information for an instance.

*/ export interface _InstanceNetworking { /** *

The amount of data in GB allocated for monthly data transfers.

*/ monthlyTransfer?: _MonthlyTransfer; /** *

An array of key-value pairs containing information about the ports on the instance.

*/ ports?: Array<_InstancePortInfo> | Iterable<_InstancePortInfo>; } export interface _UnmarshalledInstanceNetworking extends _InstanceNetworking { /** *

The amount of data in GB allocated for monthly data transfers.

*/ monthlyTransfer?: _UnmarshalledMonthlyTransfer; /** *

An array of key-value pairs containing information about the ports on the instance.

*/ ports?: Array<_UnmarshalledInstancePortInfo>; }