diff options
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-qualitygates.proto')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualitygates.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto index 3895e02c57d..7d72961142a 100644 --- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto +++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto @@ -150,6 +150,14 @@ message SearchResponse { optional bool selected = 3; optional string key = 4; optional bool isAiCodeAssured = 5; + optional AiCodeAssurance aiCodeAssurance = 6; + } + + enum AiCodeAssurance { + UNKNOWN_AI_CODE_ASSURANCE = 0; + NONE = 1; + CONTAINS_AI_CODE = 2; + AI_CODE_ASSURED = 3; } } |