thousandeyes-sdk-python/thousandeyes-sdk-tests/docs/InterfaceGroup.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

1.3 KiB

InterfaceGroup

Properties

Name Type Description Notes
aid str Account Group Id [optional] [readonly]
group_id str Group ID [optional] [readonly]
group_name str Name of the path visualization interface group [optional]
ip_addresses List[str] Array of IP addresses associated with the interface group [optional]
rdns_regexes List[str] Array of RDNS Regexes associated with the interface group [optional] [readonly]

Example

from thousandeyes_sdk.tests.models.interface_group import InterfaceGroup

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

# convert the object into a dict
interface_group_dict = interface_group_instance.to_dict()
# create an instance of InterfaceGroup from a dict
interface_group_from_dict = InterfaceGroup.from_dict(interface_group_dict)

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