Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
38 lines (29 loc) · 1.28 KB
·

AdvisoryHashiCorp.md

File metadata and controls

38 lines (29 loc) · 1.28 KB
·

AdvisoryHashiCorp

Properties

Name Type Description Notes
affected_products str [optional]
background str [optional]
bulletin_id str [optional]
cve List[str] [optional]
date_added str [optional]
details str [optional]
remediation str [optional]
summary str [optional]
title str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_hashi_corp import AdvisoryHashiCorp

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

# convert the object into a dict
advisory_hashi_corp_dict = advisory_hashi_corp_instance.to_dict()
# create an instance of AdvisoryHashiCorp from a dict
advisory_hashi_corp_from_dict = AdvisoryHashiCorp.from_dict(advisory_hashi_corp_dict)

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