Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions telemetry/definitions/commonDefinitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@
],
"description": "The type of auth flow used for signing in"
},
{
"name": "autoDetected",
"type": "boolean",
"description": "Whether the code issue was detected by auto-review"
},
{
"name": "awsAccount",
"type": "string",
Expand Down Expand Up @@ -1287,6 +1292,11 @@
"type": "int",
"description": "Number of findings discovered after executing IAM Policy Checks"
},
{
"name": "fixGenerated",
"type": "boolean",
"description": "Whether a code fix request was able to generate a fix"
},
{
"name": "fps",
"type": "int",
Expand Down Expand Up @@ -4463,10 +4473,18 @@
"name": "codewhisperer_codeScanIssueApplyFix",
"description": "Called when a code scan issue suggested fix is applied",
"metadata": [
{
"type": "autoDetected",
"required": false
},
{
"type": "codeFixAction",
"required": false
},
{
"type": "codewhispererCodeScanJobId",
"required": false
},
{
"type": "component"
},
Expand All @@ -4490,6 +4508,14 @@
"name": "codewhisperer_codeScanIssueGenerateFix",
"description": "Generated fix for a code scan issue. variant=refresh means the user chose to generate a fix again after one already exists.",
"metadata": [
{
"type": "autoDetected",
"required": false
},
{
"type": "codewhispererCodeScanJobId",
"required": false
},
{
"type": "component"
},
Expand All @@ -4503,6 +4529,10 @@
{
"type": "findingId"
},
{
"type": "fixGenerated",
"required": false
},
{
"type": "ruleId",
"required": false
Expand Down
Loading