Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.49 KB

File metadata and controls

38 lines (29 loc) · 1.49 KB

LocalSubnetConfig

The Inner IP Range assigned to the current test configuration

Properties

Name Type Description Notes
host_count_per_tunnel int
hosts_increment str The IP incrementation rule (default: 0.0.0.1).
hosts_prefix int The network mask of the IP Range (default: 16).
increment str The IP incrementation rule (default: 0.0.1.0).
prefix int The network mask of the IP Range (default: 16).
start str The start IP for the IPRange (default: 10.0.0.10).
total_host_count str
wildcard_initiator_traffic bool
network_tags List[str] A list of tags.

Example

from cyperf.models.local_subnet_config import LocalSubnetConfig

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

# convert the object into a dict
local_subnet_config_dict = local_subnet_config_instance.to_dict()
# create an instance of LocalSubnetConfig from a dict
local_subnet_config_from_dict = LocalSubnetConfig.from_dict(local_subnet_config_dict)

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