Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.4 KB

File metadata and controls

32 lines (23 loc) · 1.4 KB

CheckVulnerabilityRequest

Properties

Name Type Description Notes
installations_ids List[int]
skip_broken_installations bool Ignore broken installations (by default request fails on them) [optional]
skip_infected_installations bool Ignore quarantined installations (by default request fails on them) [optional]
skip_unsupported_installations bool Ignore unsupported installations (by default request fails on them) [optional]

Example

from plesk_wp_toolkit_client.models.check_vulnerability_request import CheckVulnerabilityRequest

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

# convert the object into a dict
check_vulnerability_request_dict = check_vulnerability_request_instance.to_dict()
# create an instance of CheckVulnerabilityRequest from a dict
check_vulnerability_request_from_dict = CheckVulnerabilityRequest.from_dict(check_vulnerability_request_dict)

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