Skip to content
Snippets Groups Projects
Commit d72fad9c authored by Subashis Chakraborty's avatar Subashis Chakraborty
Browse files

Add descriptions to UiComponentSizeEnum

parent c2e4320b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -7,9 +7,9 @@ class UiComponentSizeEnum < BaseEnum
graphql_name 'SastUiComponentSize'
description 'Size of UI component in SAST configuration page'
 
value 'SMALL'
value 'MEDIUM'
value 'LARGE'
value 'SMALL', description: "The size of UI component in SAST configuration page is small."
value 'MEDIUM', description: "The size of UI component in SAST configuration page is medium."
value 'LARGE', description: "The size of UI component in SAST configuration page is large."
end
end
end
Loading
Loading
Loading
Loading
@@ -23632,8 +23632,19 @@ type SastCiConfigurationOptionsEntityEdge {
Size of UI component in SAST configuration page
"""
enum SastUiComponentSize {
"""
The size of UI component in SAST configuration page is large.
"""
LARGE
"""
The size of UI component in SAST configuration page is medium.
"""
MEDIUM
"""
The size of UI component in SAST configuration page is small.
"""
SMALL
}
 
Loading
Loading
Loading
Loading
@@ -68137,19 +68137,19 @@
"enumValues": [
{
"name": "SMALL",
"description": null,
"description": "The size of UI component in SAST configuration page is small.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "MEDIUM",
"description": null,
"description": "The size of UI component in SAST configuration page is medium.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "LARGE",
"description": null,
"description": "The size of UI component in SAST configuration page is large.",
"isDeprecated": false,
"deprecationReason": null
}
Loading
Loading
@@ -5296,9 +5296,9 @@ Size of UI component in SAST configuration page.
 
| Value | Description |
| ----- | ----------- |
| `LARGE` | |
| `MEDIUM` | |
| `SMALL` | |
| `LARGE` | The size of UI component in SAST configuration page is large. |
| `MEDIUM` | The size of UI component in SAST configuration page is medium. |
| `SMALL` | The size of UI component in SAST configuration page is small. |
 
### SecurityReportTypeEnum
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment