Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

RemoteAccess

Properties

Name Type Description Notes
mode_cfg_increment str The increment value for the ModeCfg address pool (default: 0.0.0.1).
mode_cfg_start str The base address to be used for the ModeCfg address pool [optional]
mode_cfg_suffix int The IP address suffix for the ModeCfg address pool(default: 0.0.0.1).

Example

from cyperf.models.remote_access import RemoteAccess

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

# convert the object into a dict
remote_access_dict = remote_access_instance.to_dict()
# create an instance of RemoteAccess from a dict
remote_access_from_dict = RemoteAccess.from_dict(remote_access_dict)

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