@@ -1604,16 +1604,18 @@ type SimilarAction struct {
16041604}
16051605
16061606type ActionResult struct {
1607- Action Action `json:"action" datastore:"action"`
1608- ExecutionId string `json:"execution_id" datastore:"execution_id"`
1609- Authorization string `json:"authorization" datastore:"authorization"`
1610- Result string `json:"result" datastore:"result,noindex"`
1611- StartedAt int64 `json:"started_at" datastore:"started_at"`
1612- CompletedAt int64 `json:"completed_at" datastore:"completed_at"`
1613- Status string `json:"status" datastore:"status"`
1607+ Action Action `json:"action" datastore:"action"`
1608+ ExecutionId string `json:"execution_id" datastore:"execution_id"`
1609+ Authorization string `json:"authorization" datastore:"authorization"`
1610+ Result string `json:"result" datastore:"result,noindex"`
1611+ StartedAt int64 `json:"started_at" datastore:"started_at"`
1612+ CompletedAt int64 `json:"completed_at" datastore:"completed_at"`
1613+ Status string `json:"status" datastore:"status"`
1614+
16141615 AttackTechniques []string `json:"attack_techniques" datastore:"attack_techniques"`
16151616 AttackTactics []string `json:"attack_tactics" datastore:"attack_tactics"`
16161617 SimilarActions []SimilarAction `json:"similar_actions" datastore:"similar_actions"`
1618+ Sanitized bool `json:"sanitized" datastore:"sanitized"`
16171619}
16181620
16191621type AuthenticationUsage struct {
@@ -1640,9 +1642,9 @@ type Notification struct {
16401642 Personal bool `json:"personal" datastore:"personal"`
16411643 Read bool `json:"read" datastore:"read"`
16421644
1643- ModifiedBy string `json:"modified_by" datastore:"modified_by"`
1644- Ignored bool `json:"ignored" datastore:"ignored"`
1645- ExecutionId string `json:"execution_id" datastore:"execution_id"`
1645+ ModifiedBy string `json:"modified_by" datastore:"modified_by"`
1646+ Ignored bool `json:"ignored" datastore:"ignored"`
1647+ ExecutionId string `json:"execution_id" datastore:"execution_id"`
16461648}
16471649
16481650type NotificationCached struct {
@@ -4292,17 +4294,17 @@ type AppHealth struct {
42924294}
42934295
42944296type DatastoreHealth struct {
4295- Create bool `json:"create"`
4296- Read bool `json:"read"`
4297- Result string `json:"result"`
4298- Delete bool `json:"delete"`
4297+ Create bool `json:"create"`
4298+ Read bool `json:"read"`
4299+ Result string `json:"result"`
4300+ Delete bool `json:"delete"`
42994301}
43004302
43014303type FileHealth struct {
4302- Create bool `json:"create"`
4303- FileId string `json:"fileId"`
4304- Upload bool `json:"get_file"`
4305- Delete bool `json:"delete"`
4304+ Create bool `json:"create"`
4305+ FileId string `json:"fileId"`
4306+ Upload bool `json:"get_file"`
4307+ Delete bool `json:"delete"`
43064308}
43074309
43084310type WorkflowHealth struct {
@@ -4336,13 +4338,13 @@ type LiveExecutionStatus struct {
43364338}
43374339
43384340type HealthCheck struct {
4339- Success bool `json:"success"`
4340- Updated int64 `json:"updated"`
4341- Apps AppHealth `json:"apps"`
4342- Workflows WorkflowHealth `json:"workflows"`
4341+ Success bool `json:"success"`
4342+ Updated int64 `json:"updated"`
4343+ Apps AppHealth `json:"apps"`
4344+ Workflows WorkflowHealth `json:"workflows"`
43434345 PythonApps AppHealth `json:"python_apps"`
4344- Datastore DatastoreHealth `json:"datastore"`
4345- FileOps FileHealth `json:"fileops"`
4346+ Datastore DatastoreHealth `json:"datastore"`
4347+ FileOps FileHealth `json:"fileops"`
43464348}
43474349
43484350type HealthCheckDB struct {
0 commit comments