SLAConfigurationRequest

Properties

Name Type Description Notes
name str A unique name for the set of SLAs. [optional]
description str [optional]
critical int The number of days to remediate a critical finding. [optional]
enforce_critical bool When enabled, critical findings will be assigned an SLA expiration date based on the critical finding SLA days within this SLA configuration. [optional]
high int The number of days to remediate a high finding. [optional]
enforce_high bool When enabled, high findings will be assigned an SLA expiration date based on the high finding SLA days within this SLA configuration. [optional]
medium int The number of days to remediate a medium finding. [optional]
enforce_medium bool When enabled, medium findings will be assigned an SLA expiration date based on the medium finding SLA days within this SLA configuration. [optional]
low int The number of days to remediate a low finding. [optional]
enforce_low bool When enabled, low findings will be assigned an SLA expiration date based on the low finding SLA days within this SLA configuration. [optional]
restart_sla_on_reactivation bool When enabled, findings that were previously mitigated but are reactivated durign reimport will have their SLA period restarted. [optional]

Example

from defectdojo_api_generated.models.sla_configuration_request import SLAConfigurationRequest

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

# convert the object into a dict
sla_configuration_request_dict = sla_configuration_request_instance.to_dict()
# create an instance of SLAConfigurationRequest from a dict
sla_configuration_request_from_dict = SLAConfigurationRequest.from_dict(sla_configuration_request_dict)

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