diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-06-28 14:31:19 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-07-04 16:29:36 +0200 |
commit | 471e44c5b229e5b52047eaf81554d9ee9da9cd00 (patch) | |
tree | 72e3e87e8731b1fcd3e5d9a65fa9b8e98f9e1293 /sonar-ws | |
parent | 597f139942a1f27d5e6f519388851a8fe37b0881 (diff) | |
download | sonarqube-471e44c5b229e5b52047eaf81554d9ee9da9cd00.tar.gz sonarqube-471e44c5b229e5b52047eaf81554d9ee9da9cd00.zip |
SONAR-9482 Show ws returns profile related info only
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualityprofiles.proto | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto b/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto index 0dab9b3c06f..0f1ddd6cb0b 100644 --- a/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto +++ b/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto @@ -111,17 +111,15 @@ message ShowWsResponse { optional string language = 3; optional string languageName = 4; optional bool isInherited = 5; - optional string parentKey = 6; - optional string parentName = 7; - optional bool isDefault = 8; - optional int64 activeRuleCount = 9; - optional int64 activeDeprecatedRuleCount = 12; - optional int64 projectCount = 10; - optional string ruleUpdatedAt = 11; - optional string lastUsed = 13; - optional string userUpdatedAt = 14; - optional string organization = 15; - optional bool isBuiltIn = 16; + optional bool isDefault = 6; + optional int64 activeRuleCount = 7; + optional int64 activeDeprecatedRuleCount = 8; + optional int64 projectCount = 9; + optional string rulesUpdatedAt = 10; + optional string lastUsed = 11; + optional string userUpdatedAt = 12; + optional string organization = 13; + optional bool isBuiltIn = 14; } message CompareToSonarWay { |