Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

PublicNetworkIpBlock

The assigned IP block to the Public Network.

Properties

Name Type Description Notes
id str The IP Block identifier.
cidr str The CIDR notation of the IP block.
used_ips_count str The number of IPs used in the IP block.

Example

from pnap_network_api.models.public_network_ip_block import PublicNetworkIpBlock

# TODO update the JSON string below
json = "{}"
# create an instance of PublicNetworkIpBlock from a JSON string
public_network_ip_block_instance = PublicNetworkIpBlock.from_json(json)
# print the JSON string representation of the object
print(PublicNetworkIpBlock.to_json())

# convert the object into a dict
public_network_ip_block_dict = public_network_ip_block_instance.to_dict()
# create an instance of PublicNetworkIpBlock from a dict
public_network_ip_block_from_dict = PublicNetworkIpBlock.from_dict(public_network_ip_block_dict)

[Back to Model list] [Back to API list] [Back to README]