Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion sdk/consumption/arm-consumption/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,15 @@ msRestNodeAuth
const skiptoken = "testskiptoken";
const top = 1;
const apply = "testapply";
client.usageDetails.list(expand, filter, skiptoken, top, apply).then((result) => {
client.usageDetails.list({
expand: expand,
filter: filter,
skiptoken: skiptoken,
top: top,
queryOptions: {
apply: apply
}
}).then((result) => {
console.log("The result is:");
console.log(result);
});
Expand Down