Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 2.37 KB

File metadata and controls

39 lines (31 loc) · 2.37 KB

UpdateMonitorRequestMonitor

Properties

Name Type Description Notes
id object Uniquely specifies a Monitor. [optional]
name str The name of the monitor. [optional]
firewall_id ID [optional]
monitor_type MonitorType [optional] [default to MonitorType.UNSPECIFIED]
risk_category_type RiskCategoryType [optional] [default to RiskCategoryType.UNSPECIFIED]
test_category TestCategoryType [optional] [default to TestCategoryType.UNSPECIFIED]
artifact_identifier ArtifactIdentifier [optional]
created_time datetime The time at which the monitor was created. [optional]
notify bool This field indicates whether the system should send CT monitoring notifications when this monitor is triggered. For default monitors, after the RIME engine creates a Monitor, this field should only be modified directly by the user. i.e. when we upsert the monitor in the Result synthesizer, we must not overwrite the value configured by the user. [optional]
config MonitorConfig [optional]
excluded_transforms ExcludedTransforms [optional]
pinned bool Option to pin a monitor. Pinned monitors are pinned for all users visiting the monitor's project. [optional]

Example

from ri.apiclient.models.update_monitor_request_monitor import UpdateMonitorRequestMonitor

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

# convert the object into a dict
update_monitor_request_monitor_dict = update_monitor_request_monitor_instance.to_dict()
# create an instance of UpdateMonitorRequestMonitor from a dict
update_monitor_request_monitor_from_dict = UpdateMonitorRequestMonitor.from_dict(update_monitor_request_monitor_dict)

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