- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- IAM Permissions
- WizRelatedIssue
- RelatedEntity
- GreenAgentRemediationAnalysis
- RemediationStep
- StepContent
- WizRemediationAction
- WizRemediationActionType
Full name: projects.locations.instances.cases.fetchWizRelatedIssues
Fetches Wiz related security issues for a specific case.
HTTP request
GET https://{endpoint}/v1alpha/{name}:fetchWizRelatedIssues
Where {endpoint} is one of the supported service endpoints.
Path parameters
| Parameters | |
|---|---|
name |
Required. The case to fetch Wiz related issues for. Format: projects/{project}/locations/{location}/instances/{instance}/cases/{case} |
Query parameters
| Parameters | |
|---|---|
alertIdentifiers[] |
Optional. An optional list of specific alert identifiers used to filter or correlate the Wiz issues. |
Request body
The request body must be empty.
Response body
Response message for CaseService.FetchWizRelatedIssues.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"relatedIssues": [
{
object ( |
| Fields | |
|---|---|
relatedIssues[] |
Output only. The Wiz related issues. |
wizIntegrationConfigured |
Output only. Whether Wiz integration is configured. |
wizAlertCount |
Output only. The number of Wiz alerts in the case. |
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud-platformhttps://www.googleapis.com/auth/chronicle
For more information, see the Authentication Overview.
IAM Permissions
Requires the following IAM permission on the name resource:
chronicle.cases.get
For more information, see the IAM documentation.
WizRelatedIssue
Represents a security issue from Wiz related to a support case.
| JSON representation |
|---|
{ "issueId": string, "description": string, "relatedEntity": { object ( |
| Fields | |
|---|---|
issueId |
Output only. The unique identifier for the issue in Wiz. |
description |
Output only. Detailed explanation of the vulnerability or finding. |
relatedEntity |
Output only. The specific asset affected. |
url |
Output only. A direct link to view the issue within the Wiz dashboard. |
title |
Output only. The headline or name of the security finding. |
greenAgentRemediationAnalysis |
Output only. An AI-driven remediation plan detailing how to resolve the issue. |
riskCategories[] |
Output only. The risk categories of the Wiz issue. |
RelatedEntity
Represents the asset details for a WizRelatedIssue.
| JSON representation |
|---|
{ "entityName": string, "entityType": string } |
| Fields | |
|---|---|
entityName |
Output only. Name of the affected asset, IP, or endpoint. |
entityType |
Output only. Type of the affected asset (e.g. HOSTNAME). |
GreenAgentRemediationAnalysis
AI-driven remediation analysis for a Wiz security issue.
| JSON representation |
|---|
{
"title": string,
"reasoning": string,
"remediationSteps": [
{
object ( |
| Fields | |
|---|---|
title |
Output only. A concise summary of the overall remediation strategy. |
reasoning |
Output only. The justification for the remediation steps based on the vulnerability impact. |
remediationSteps[] |
Output only. An array of sequential steps required to fix the issue. |
RemediationStep
A single step in the remediation process.
| JSON representation |
|---|
{ "title": string, "content": [ { object ( |
| Fields | |
|---|---|
title |
Output only. The title of the specific remediation step. |
content[] |
Output only. The instructional content for the step. |
actions[] |
Output only. Automated workflows or actions that can be triggered for this step. |
StepContent
Instructional content for a remediation step.
| JSON representation |
|---|
{ "text": string, "markdownContent": string } |
| Fields | |
|---|---|
text |
Output only. Plaintext instructions (often null/empty if markdown is used). |
markdownContent |
Output only. Rich text instructions, including code blocks, commands, and formatting. |
WizRemediationAction
Automated response action or workflow that can be triggered for a step.
| JSON representation |
|---|
{
"type": enum ( |
| Fields | |
|---|---|
type |
Output only. The action type (e.g., RUN_RESPONSE_ACTION). |
label |
Output only. A human-readable label for the action button in the UI. |
description |
Output only. Further details about what the action does. |
id |
Output only. The unique ID of the action or workflow to execute. |
WizRemediationActionType
Core action type.
| Enums | |
|---|---|
WIZ_REMEDIATION_ACTION_TYPE_UNSPECIFIED |
Action type is unspecified. |
RUN_RESPONSE_ACTION |
Runs a response action. |