SDK Error
ARM and Data Plane OpenAPI(swagger) specs
Enum value must not contain empty value.
Enum must not be empty, or contain special character, like space, tab, etc. It will lead to code generation failure in downstream pipeline.
February 18, 2020
February 18, 2020
Remove empty string from enum.
Invalid:
"enum":[
"Success",
"Failed",
" "
]
Valid:
"enum":[
"Success",
"Failed",
]