mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-11 01:31:38 +00:00
Make tool_version, onefuzz_version, tool_name optinal (#1940)
This commit is contained in:
parent
e2314b1311
commit
b080f5b164
@ -267,10 +267,7 @@ If webhook is set to have Event Grid message format then the payload will look a
|
|||||||
"call_stack_sha256",
|
"call_stack_sha256",
|
||||||
"input_sha256",
|
"input_sha256",
|
||||||
"task_id",
|
"task_id",
|
||||||
"job_id",
|
"job_id"
|
||||||
"tool_name",
|
|
||||||
"tool_version",
|
|
||||||
"onefuzz_version"
|
|
||||||
],
|
],
|
||||||
"title": "Report",
|
"title": "Report",
|
||||||
"type": "object"
|
"type": "object"
|
||||||
@ -2129,10 +2126,7 @@ If webhook is set to have Event Grid message format then the payload will look a
|
|||||||
"call_stack_sha256",
|
"call_stack_sha256",
|
||||||
"input_sha256",
|
"input_sha256",
|
||||||
"task_id",
|
"task_id",
|
||||||
"job_id",
|
"job_id"
|
||||||
"tool_name",
|
|
||||||
"tool_version",
|
|
||||||
"onefuzz_version"
|
|
||||||
],
|
],
|
||||||
"title": "Report",
|
"title": "Report",
|
||||||
"type": "object"
|
"type": "object"
|
||||||
@ -6383,10 +6377,7 @@ If webhook is set to have Event Grid message format then the payload will look a
|
|||||||
"call_stack_sha256",
|
"call_stack_sha256",
|
||||||
"input_sha256",
|
"input_sha256",
|
||||||
"task_id",
|
"task_id",
|
||||||
"job_id",
|
"job_id"
|
||||||
"tool_name",
|
|
||||||
"tool_version",
|
|
||||||
"onefuzz_version"
|
|
||||||
],
|
],
|
||||||
"title": "Report",
|
"title": "Report",
|
||||||
"type": "object"
|
"type": "object"
|
||||||
|
@ -214,9 +214,9 @@ class Report(BaseModel):
|
|||||||
asan_log: Optional[str]
|
asan_log: Optional[str]
|
||||||
task_id: UUID
|
task_id: UUID
|
||||||
job_id: UUID
|
job_id: UUID
|
||||||
tool_name: str
|
tool_name: Optional[str]
|
||||||
tool_version: str
|
tool_version: Optional[str]
|
||||||
onefuzz_version: str
|
onefuzz_version: Optional[str]
|
||||||
scariness_score: Optional[int]
|
scariness_score: Optional[int]
|
||||||
scariness_description: Optional[str]
|
scariness_description: Optional[str]
|
||||||
minimized_stack: Optional[List[str]]
|
minimized_stack: Optional[List[str]]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user