Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.7 KB

File metadata and controls

34 lines (25 loc) · 1.7 KB

IpBlockCreate

IP Block Request.

Properties

Name Type Description Notes
location str IP Block location ID. Currently this field should be set to `PHX`, `ASH`, `SGP`, `NLD`, `CHI` or `SEA`.
cidr_block_size str CIDR IP Block Size. V4 supported sizes: [`/31`, `/30`, `/29` or `/28`]. V6 supported sizes: [`/64`]. For a larger Block Size contact support.
ip_version str IP Version. This field should be set to `V4` or `V6` [optional] [default to 'V4']
description str The description of the IP Block. [optional]
tags List[TagAssignmentRequest] Tags to set to the ip-block. To create a new tag or list all the existing tags that you can use, refer to Tags API. [optional]

Example

from pnap_ip_api.models.ip_block_create import IpBlockCreate

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

# convert the object into a dict
ip_block_create_dict = ip_block_create_instance.to_dict()
# create an instance of IpBlockCreate from a dict
ip_block_create_from_dict = IpBlockCreate.from_dict(ip_block_create_dict)

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