CaseAssistantWidget

Case assistant widget.

JSON representation
{
  "state": enum (AiCaseAssistantStatus),
  "summaryPrediction": {
    object (CaseAssistantSummaryData)
  },
  "reasonsPrediction": {
    object (CaseAssistantReasonsData)
  },
  "nextStepsPrediction": {
    object (CaseAssistantNextStepsData)
  },
  "alertsCount": integer,
  "eventsCount": integer,
  "entitiesCount": integer,
  "environment": string,
  "modificationTimeUnixTimeInMs": string,
  "title": string,
  "order": integer,
  "type": enum (WidgetTemplateType),
  "gridColumns": enum (WidgetTemplateGridColumns),
  "description": string,
  "identifier": string,
  "jsonData": string,
  "errorJsonData": string,
  "resultStatus": enum (WidgetResultStatus),
  "investigationNotebookId": string
}
Fields
state

enum (AiCaseAssistantStatus)

Output only. The widget state.

summaryPrediction

object (CaseAssistantSummaryData)

Output only. The summary prediction.

reasonsPrediction

object (CaseAssistantReasonsData)

Output only. The case assistant reasons data.

nextStepsPrediction

object (CaseAssistantNextStepsData)

Output only. The case assistant next steps prediction data.

alertsCount

integer

Output only. The number of alerts in the case.

eventsCount

integer

Output only. The number of events in the case.

entitiesCount

integer

Output only. The number of entities in the case.

environment

string

Output only. The environment of the case.

modificationTimeUnixTimeInMs

string (int64 format)

Output only. The case modification time in milliseconds.

title

string

Output only. The widget title.

order

integer

Output only. The widget order.

type

enum (WidgetTemplateType)

Output only. The widget template type.

gridColumns

enum (WidgetTemplateGridColumns)

Output only. The widget template grid columns.

description

string

Output only. The widget description.

identifier

string

Output only. The widget identifier.

jsonData

string

Output only. The widget json data.

errorJsonData

string

Output only. The widget error json data.

resultStatus

enum (WidgetResultStatus)

Output only. The widget result status.

investigationNotebookId

string

Output only. The investigation notebook id.

AiCaseAssistantStatus

AI Case assistant widget status.

Enums
AI_CASE_ASSISTANT_STATUS_UNSPECIFIED Unspecified AI case assistant widget status.
PENDING_START AI case assistant widget is pending start.
IN_PROGRESS AI case assistant widget is in progress.
SUCCESSFUL AI case assistant widget is successful.
AI_CASE_ASSISTANT_ERROR AI case assistant widget is error.

CaseAssistantSummaryData

Case assistant summary data.

JSON representation
{
  "caseSummary": string,
  "caseSummaryId": integer,
  "caseAssistantType": enum (CaseAssistantType)
}
Fields
caseSummary

string

Output only. The case summary.

caseSummaryId

integer

Output only. The case summary id.

caseAssistantType

enum (CaseAssistantType)

Output only. The case assistant type.

CaseAssistantType

Case assistant type.

Enums
CASE_ASSISTANT_TYPE_UNSPECIFIED Unspecified case assistant type.
THREAT_SUMMARY Case assistant type is summary.
RECOMMENDATION_REASONS Case assistant type is recommendation.
RECOMMENDATION_NEXT_STEPS Case assistant type is recommendation next steps.

CaseAssistantReasonsData

Case assistant reasons data.

JSON representation
{
  "reasons": [
    string
  ],
  "score": number,
  "caseSummaryId": integer,
  "caseAssistantType": enum (CaseAssistantType)
}
Fields
reasons[]

string

Output only. The case assistant reasons.

score

number

Output only. The case assistant score.

caseSummaryId

integer

Output only. The case summary id.

caseAssistantType

enum (CaseAssistantType)

Output only. The case assistant type.

CaseAssistantNextStepsData

Case assistant next steps data.

JSON representation
{
  "nextSteps": [
    string
  ],
  "caseSummaryId": integer,
  "caseAssistantType": enum (CaseAssistantType)
}
Fields
nextSteps[]

string

Output only. The case assistant next steps.

caseSummaryId

integer

Output only. The case summary id.

caseAssistantType

enum (CaseAssistantType)

Output only. The case assistant type.