/** *

A complex type for the set of IP addresses for an accelerator.

*/ export interface _IpSet { /** *

The types of IP addresses included in this IP set.

*/ IpFamily?: string; /** *

The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.

*/ IpAddresses?: Array | Iterable; } export interface _UnmarshalledIpSet extends _IpSet { /** *

The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.

*/ IpAddresses?: Array; }