Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pytest_splunk_addon/CIM_Models/datamodel_definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -2396,8 +2396,9 @@
},
},
}
# No fields changes between v6.0.0 and v6.0.2
# No recommended/required fields changes between v6.0.0 and v6.2.0
datamodels["6.0.1"] = datamodels["6.0.0"]
datamodels["6.0.2"] = datamodels["6.0.0"]
datamodels["6.1.0"] = datamodels["6.0.2"]
datamodels["latest"] = datamodels["6.1.0"]
datamodels["6.2.0"] = datamodels["6.1.0"]
datamodels["latest"] = datamodels["6.2.0"]
5 changes: 5 additions & 0 deletions pytest_splunk_addon/data_models/Data_Access.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@
"type": "optional",
"comment": "Name of the destination as defined by the Vendor."
},
{
"name": "dest_type",
"type": "optional",
"comment": "The type of the destination object, such as 'instance', 'storage', 'firewall', 'printer'."
},
{
"name": "dest_url",
"type": "optional",
Expand Down
2 changes: 1 addition & 1 deletion pytest_splunk_addon/data_models/Endpoint.json
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@
{
"name": "status",
"type": "required",
"expected_values": ["critical", "started", "stopped", "warning"],
"expected_values": ["critical", "started", "stopped", "warning", "installed"],
"validation": "",
"comment": "The status of the service."
},
Expand Down
5 changes: 5 additions & 0 deletions pytest_splunk_addon/data_models/Intrusion_Detection.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@
"type": "optional",
"comment": "The unique identifier or event code of the event signature."
},
{
"name": "dest_type",
"type": "optional",
"comment": "The type of the destination object, such as 'instance', 'storage', 'firewall'."
},
{
"name": "src",
"type": "conditional",
Expand Down
1 change: 1 addition & 0 deletions pytest_splunk_addon/data_models/Updates.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
{
"name": "file_name",
"type": "required",
"multi_value": true,
"comment":"The name of the patch package that was installed or attempted."
},
{
Expand Down
Loading