We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In storage.json 2016-01-01, the Usage_List method remove the following from the 2015-06-15 spec:
Usage_List
"x-ms-pageable": { "nextLinkName": null }
Which makes the method return UsageListResult instead of List<Usage>. This seems like an unnecessary breaking change in every language.
UsageListResult
List<Usage>
The text was updated successfully, but these errors were encountered:
@amarzavery @devigned ? Makes Python ugly too:
for usage in storage_client.usage.list().value: print('\t{}'.format(usage.name.value))
Sorry, something went wrong.
No branches or pull requests
In storage.json 2016-01-01, the
Usage_List
method remove the following from the 2015-06-15 spec:Which makes the method return
UsageListResult
instead ofList<Usage>
. This seems like an unnecessary breaking change in every language.The text was updated successfully, but these errors were encountered: