SDK Warning
ARM and Data plane OpenAPI(swagger) specs
The summary and description values should not be same.
Each operation has a summary and description values. They must not be same.
The summary must provide a short summary of the operation. The description must provide a detailed description of the operation. This will ensure that all the operations are well documented.
Provide a short summary for the summary section and a detailed description for the description section.
The following operation is a good example:
......
......
"put": {
"summary": "Creates or Updates an availability set",
"description": "This operation creates or updates an availability set. This takes the resourceGroupName and availabilitySetName as input. If an availability set with the same name exists, then the same is updated. Else a new availability set is created.",
.....
.....
}
......
......
The following would be invalid:
......
......
"put": {
"summary": "Creates or Updates an availability set",
"description": "Creates or Updates an availability set",
.....
.....
}
......
......