Skip to content

Commit

Permalink
update expression metadata for createArray/createObject (microsoft#1052)
Browse files Browse the repository at this point in the history
* added listAdminKeys and listSeviceSas TLEs

* added location property for deployment function

* added new fn, update sorting

* fix min args for createArray/createObject

* fix description
  • Loading branch information
bmoore-msft authored Oct 14, 2020
1 parent 3efd061 commit c46a5b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/ExpressionMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@
"name": "createArray",
"expectedUsage": "createArray(arg1, arg2, arg3, ...)",
"description": "Creates an array from the parameters.",
"minimumArguments": 1,
"minimumArguments": 0,
"maximumArguments": null
},
{
"name": "createObject",
"expectedUsage": "createObject(key1, value1, key2, value2, ...)",
"description": "Creates an object from the keys and values provided in the arguments.\nAn even number of arguments must be provided.",
"minimumArguments": 2,
"description": "Creates an object from the keys and values provided in the arguments.",
"minimumArguments": 0,
"maximumArguments": null
},
{
Expand Down Expand Up @@ -869,4 +869,4 @@
"maximumArguments": 1
}
]
}
}

0 comments on commit c46a5b2

Please sign in to comment.