Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.46 KB

CreatePrivateNetworkRequest.md

File metadata and controls

31 lines (22 loc) · 1.46 KB

CreatePrivateNetworkRequest

Properties

Name Type Description Notes
region str 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

from pfruck_contabo.models.create_private_network_request import CreatePrivateNetworkRequest

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

# convert the object into a dict
create_private_network_request_dict = create_private_network_request_instance.to_dict()
# create an instance of CreatePrivateNetworkRequest from a dict
create_private_network_request_from_dict = CreatePrivateNetworkRequest.from_dict(create_private_network_request_dict)

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