Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.55 KB

File metadata and controls

37 lines (28 loc) · 1.55 KB

DeviceFactsRequest

Properties

Name Type Description Notes
os OperatingSystemRequest [optional]
disks List[DiskRequest] [optional]
network NetworkRequest [optional]
hardware HardwareRequest [optional]
software List[SoftwareRequest] [optional]
processes List[ProcessRequest] [optional]
users List[DeviceUserRequest] [optional]
groups List[DeviceGroupRequest] [optional]
vendor Dict[str, object] [optional]

Example

from authentik_client.models.device_facts_request import DeviceFactsRequest

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

# convert the object into a dict
device_facts_request_dict = device_facts_request_instance.to_dict()
# create an instance of DeviceFactsRequest from a dict
device_facts_request_from_dict = DeviceFactsRequest.from_dict(device_facts_request_dict)

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