Skip to content

IPAddressRange

Bases: OCIType

IP Address Range.

Attributes:

min_ip_address (str):

max_ip_address (str):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class IPAddressRange(OCIType):
    """IP Address Range.

    Attributes:

        min_ip_address (str):

        max_ip_address (str):

    """

    min_ip_address: str = field(metadata={"alias": "minIpAddress"})

    max_ip_address: str = field(metadata={"alias": "maxIpAddress"})