You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Region where the Private Network should be located. Default is `EU`
[optional] [default to 'EU']
name
str
The name of the Private Network. It may contain letters, numbers, colons, dashes, and underscores. There is a limit of 255 characters per Private Network name.
description
str
The description of the Private Network. There is a limit of 255 characters per Private Network description.
[optional]
Example
frompfruck_contabo.models.create_private_network_requestimportCreatePrivateNetworkRequest# TODO update the JSON string belowjson="{}"# create an instance of CreatePrivateNetworkRequest from a JSON stringcreate_private_network_request_instance=CreatePrivateNetworkRequest.from_json(json)
# print the JSON string representation of the objectprint(CreatePrivateNetworkRequest.to_json())
# convert the object into a dictcreate_private_network_request_dict=create_private_network_request_instance.to_dict()
# create an instance of CreatePrivateNetworkRequest from a dictcreate_private_network_request_from_dict=CreatePrivateNetworkRequest.from_dict(create_private_network_request_dict)