Private Network details.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The private network identifier. | |
| name | str | The friendly name of this private network. | |
| description | str | The description of this private network. | [optional] |
| vlan_id | int | The VLAN of this private network. | |
| type | str | The type of the private network. | |
| location | str | The location of this private network. | |
| location_default | bool | Identifies network as the default private network for the specified location. | |
| cidr | str | IP range associated with this private network in CIDR notation. | [optional] |
| servers | List[PrivateNetworkServer] | ||
| memberships | List[NetworkMembership] | A list of resources that are members of this private network. | |
| status | str | The status of the private network. Can have one of the following values: `BUSY`, `READY`, `DELETING` or `ERROR`. | |
| created_on | datetime | Date and time when this private network was created. |
from pnap_network_api.models.private_network import PrivateNetwork
# TODO update the JSON string below
json = "{}"
# create an instance of PrivateNetwork from a JSON string
private_network_instance = PrivateNetwork.from_json(json)
# print the JSON string representation of the object
print(PrivateNetwork.to_json())
# convert the object into a dict
private_network_dict = private_network_instance.to_dict()
# create an instance of PrivateNetwork from a dict
private_network_from_dict = PrivateNetwork.from_dict(private_network_dict)