You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And if an operation defines a basic x-ms-pageable:
"x-ms-pageable": {
"nextLinkName": null
}
And a model that uses x-ms-client-name:
"ListIndexesResult": {
"properties": {
"value": {
"x-ms-client-name": "Indexes",
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/definitions/SearchIndex"
},
"description": "The indexes in the Search service."
}
},
"required": [
"value"
],
"description": "Response from a List Indexes request. If successful, it includes the full definitions of all indexes."
},
We generate the wrong code, we try to access value where we should access indexes:
And if an operation defines a basic x-ms-pageable:
And a model that uses x-ms-client-name:
We generate the wrong code, we try to access
value
where we should accessindexes
:The text was updated successfully, but these errors were encountered: