Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -3122,7 +3122,7 @@
"200": {
"description": "Request successful. Returns the details of all the VirtualHubRouteTableV2s for the VirtualHub.",
"schema": {
"$ref": "#/definitions/ListHubVirtualNetworkConnectionsResult"
"$ref": "#/definitions/ListVirtualHubRouteTableV2sResult"

@lirenhe lirenhe Oct 10, 2019

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As you change the schema of the result, is this part of the effort to fix the problem in swagger spec?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, i just added the api yesterday and this did not catch my attention, so this commit is fixing the error.

}
},
"default": {
Expand Down Expand Up @@ -4542,6 +4542,22 @@
}
},
"description": "VirtualHubRouteTableV2 route."
},
"ListVirtualHubRouteTableV2sResult": {
"description": "List of VirtualHubRouteTableV2s and a URL nextLink to get the next set of results.",
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/VirtualHubRouteTableV2"
},
"description": "List of VirtualHubRouteTableV2s."
},
"nextLink": {
"type": "string",
"description": "URL to get the next set of operation list results if there are any."
}
}
}
}
}