thousandeyes-sdk-python/thousandeyes-sdk-endpoint-agents/docs/EndpointVpnProfile.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

34 lines
1.4 KiB
Markdown

# EndpointVpnProfile
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**interface_name** | **str** | Interface name associated with `interfaceProfile`. | [optional]
**vpn_type** | [**VpnType**](VpnType.md) | | [optional]
**vpn_gateway_address** | **str** | IP address of the VPN gateway. | [optional]
**vpn_client_addresses** | **List[str]** | List of private IP addresses assigned to the device, by the VPN server. |
**vpn_client_network_range** | **List[str]** | List of private networks assigned to the device, by the VPN server. |
## Example
```python
from thousandeyes_sdk.endpoint_agents.models.endpoint_vpn_profile import EndpointVpnProfile
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointVpnProfile from a JSON string
endpoint_vpn_profile_instance = EndpointVpnProfile.from_json(json)
# print the JSON string representation of the object
print(EndpointVpnProfile.to_json())
# convert the object into a dict
endpoint_vpn_profile_dict = endpoint_vpn_profile_instance.to_dict()
# create an instance of EndpointVpnProfile from a dict
endpoint_vpn_profile_from_dict = EndpointVpnProfile.from_dict(endpoint_vpn_profile_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)