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
Some service methods return IReadOnlyList. We could:
Wrap them in pageables. We'll only make 1 service call, and skip/top/pageSize would not be supported.
Wrap them in collections, like we do in Form Recognizer. We would need to create a new Collection type for every possible return type.
Edit: we'll wrap them in pageables for consistency across methods and across languages. They were wrapped in collections in Form Recognizer because returning pageables from Long-Running Operations would require extra engineering work.
The text was updated successfully, but these errors were encountered:
Changes to fix the SDK generation with latest API version (Azure#15927)
* Adding diable local auth in PUT payload
* Adding diable local auth in PUT payload
* fixing md file to generate right SDK files
Co-authored-by: Sekhar Samala <chsamala@microsoft.com>
Some service methods return
IReadOnlyList
. We could:Edit: we'll wrap them in pageables for consistency across methods and across languages. They were wrapped in collections in Form Recognizer because returning pageables from Long-Running Operations would require extra engineering work.
The text was updated successfully, but these errors were encountered: