Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.55 KB

File metadata and controls

40 lines (31 loc) · 1.55 KB

EndpointDeviceDetails

Properties

Name Type Description Notes
device_uuid UUID [optional]
pbm_uuid UUID [readonly]
name str
access_group UUID [optional]
access_group_obj DeviceAccessGroup [optional]
expiring bool [optional]
expires datetime [optional]
facts DeviceFactSnapshot [readonly]
attributes Dict[str, object] [optional]
connections_obj List[DeviceConnection]
policies List[UUID] [readonly]
connections List[UUID] [readonly]

Example

from authentik_client.models.endpoint_device_details import EndpointDeviceDetails

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

# convert the object into a dict
endpoint_device_details_dict = endpoint_device_details_instance.to_dict()
# create an instance of EndpointDeviceDetails from a dict
endpoint_device_details_from_dict = EndpointDeviceDetails.from_dict(endpoint_device_details_dict)

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