-
Notifications
You must be signed in to change notification settings - Fork 45
Add dsc function list
subcommand
#959
New issue
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
base: main
Are you sure you want to change the base?
Conversation
} | ||
|
||
fn category(&self) -> FunctionCategory { | ||
FunctionCategory::Comparison |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/template-functions#logical-functions lists if
under the logical category
} | ||
|
||
fn category(&self) -> FunctionCategory { | ||
FunctionCategory::Deployment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/template-functions#resource-functions lists reference under the Resource category
} | ||
|
||
fn category(&self) -> FunctionCategory { | ||
FunctionCategory::Deployment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/template-functions#resource-functions lists ResourceID under the Resource category
PR Summary
As I'm helping partner teams with more complex configurations, I needed an easier way to reference supported functions than looking at the code. This required adding a
description
andcategory
to all existing functions. This allows enumerating supported functions just like resources and extensions:Made some other small fixes in other related areas: