Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.6 KB

File metadata and controls

33 lines (24 loc) · 1.6 KB

DeviceVulnerabilityCveDetails

Structured details for per-device CVE vulnerability events.

Properties

Name Type Description Notes
detail_type str The type of detail for discriminator purposes.
cve_id str CVE identifier (e.g. CVE-2024-1234). MITRE-style CVE-YYYY-sequence identifier, matching device list filter validation.
first_image_ref str Human-readable OS image reference when the CVE was first detected on this device (historical/audit field). [optional]
first_image_digest str Image digest when the CVE was first detected on this device (historical/audit field, e.g. sha256:...). [optional]

Example

from flightctl.models.device_vulnerability_cve_details import DeviceVulnerabilityCveDetails

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

# convert the object into a dict
device_vulnerability_cve_details_dict = device_vulnerability_cve_details_instance.to_dict()
# create an instance of DeviceVulnerabilityCveDetails from a dict
device_vulnerability_cve_details_from_dict = DeviceVulnerabilityCveDetails.from_dict(device_vulnerability_cve_details_dict)

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