AgentIntegrationDetails

Details of an integration that can be used to execute actions.

JSON representation
{
  "integration": string,
  "integrationInstance": string,
  "displayName": string,
  "description": string,
  "actions": [
    {
      object (AgentIntegrationAction)
    }
  ]
}
Fields
integration

string

Unique identifier of the integration.

integrationInstance

string

Unique identifier of the integration instance.

displayName

string

Display name of the integration.

description

string

Description of the integration.

actions[]

object (AgentIntegrationAction)

List of all actions that can be executed on the SIEM alert using this integration.

AgentIntegrationAction

Details of an action that can be executed.

JSON representation
{
  "displayName": string,
  "description": string,
  "parameters": [
    {
      object (AgentActionParameter)
    }
  ],
  "entityTypes": [
    string
  ],
  "shortDescription": string,
  "parametersDescription": string
}
Fields
displayName

string

The name of the action.

description

string

The description of the action.

parameters[]

object (AgentActionParameter)

The parameters required for the action.

entityTypes[]

string

The entity types that the action supports.

shortDescription

string

Output only. The short description of the action.

parametersDescription

string

Output only. Description of the parameters for AI use.

AgentActionParameter

Details of a parameter required for an action. Details of an action that can be executed.

JSON representation
{
  "mandatory": boolean,
  "defaultValue": string,
  "description": string,
  "name": string,
  "value": string,
  "type": string,
  "optionalValuesJson": string
}
Fields
mandatory

boolean

Required. Whether the parameter is mandatory.

defaultValue

string

The default value of the parameter.

description

string

The description of the parameter.

name

string

The name of the parameter.

value

string

The value of the parameter.

type

string

Required. The type of the parameter.

optionalValuesJson

string

The optional values for the parameter in JSON format.