Details of Private Network to be created.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The friendly name of this private network. This name should be unique. | |
| description | str | The description of this private network. | [optional] |
| location | str | The location of this private network. Supported values are `PHX`, `ASH`, `SGP`, `NLD`, `CHI` and `SEA`. | |
| location_default | bool | Identifies network as the default private network for the specified location. | [optional] [default to False] |
| vlan_id | int | The VLAN that will be assigned to this network. | [optional] |
| cidr | str | IP range associated with this private network in CIDR notation.<br> Setting the `force` query parameter to `true` allows you to skip assigning a specific IP range to network. | [optional] |
from pnap_network_api.models.private_network_create import PrivateNetworkCreate
# TODO update the JSON string below
json = "{}"
# create an instance of PrivateNetworkCreate from a JSON string
private_network_create_instance = PrivateNetworkCreate.from_json(json)
# print the JSON string representation of the object
print(PrivateNetworkCreate.to_json())
# convert the object into a dict
private_network_create_dict = private_network_create_instance.to_dict()
# create an instance of PrivateNetworkCreate from a dict
private_network_create_from_dict = PrivateNetworkCreate.from_dict(private_network_create_dict)