Properties
| Name |
Type |
Description |
Notes |
| device_uids |
List[str] |
List of UIDs of the devices to refresh RA VPN sessions for. Each of these devices has to be an RA VPN headend (this is indicated by the `deviceRole` field in the device object being set to `RA_VPN_HEADEND`). |
|
Example
from scc_firewall_manager_sdk.models.ra_vpn_device_input import RaVpnDeviceInput
# TODO update the JSON string below
json = "{}"
# create an instance of RaVpnDeviceInput from a JSON string
ra_vpn_device_input_instance = RaVpnDeviceInput.from_json(json)
# print the JSON string representation of the object
print(RaVpnDeviceInput.to_json())
# convert the object into a dict
ra_vpn_device_input_dict = ra_vpn_device_input_instance.to_dict()
# create an instance of RaVpnDeviceInput from a dict
ra_vpn_device_input_form_dict = ra_vpn_device_input.from_dict(ra_vpn_device_input_dict)
[Back to Model list] [Back to API list] [Back to README]