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
6 changes: 3 additions & 3 deletions src/azure-cli/azure/cli/command_modules/appconfig/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@
examples:
- name: Add a filter for feature 'color' with label MyLabel with name 'MyFilter' and 2 parameters.
text:
az appconfig feature filter add -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter --filter-parameters Name=\\"Value\\" Name2=\\"Value2\\"
az appconfig feature filter add -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter --filter-parameters Name='\\"Value\\" Name2=\\"Value2\\"'
- name: Insert a filter at index 2 (zero-based index) for feature 'color' with label MyLabel and filter name 'MyFilter' with no parameters
text:
az appconfig feature filter add -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter --index 2
Expand All @@ -606,10 +606,10 @@
examples:
- name: Update the filter for feature 'color' with label MyLabel with name 'MyFilter' and 2 parameters.
text:
az appconfig feature filter update -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter --filter-parameters Name=\\"Value\\" Name2=\\"Value2\\"
az appconfig feature filter update -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter --filter-parameters Name='\\"Value\\"' Name2='\\"Value2\\"'
- name: Update the filter at index 2 (zero-based index) for feature 'color' with label MyLabel with name 'MyFilter' and 2 parameters.
text:
az appconfig feature filter update -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter --filter-parameters Name=\\"Value\\" Name2=\\"Value2\\" --index 2
az appconfig feature filter update -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter --filter-parameters Name='\\"Value\\"' Name2='\\"Value2\\"' --index 2
Comment on lines +609 to +612
Copy link

Copilot AI Aug 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The filter-parameters syntax appears incorrect. Multiple parameters should be space-separated, but 'Name2' should be a separate parameter. The current syntax suggests Name2 is part of the first parameter's value.

Copilot uses AI. Check for mistakes.
Comment on lines +609 to +612
Copy link

Copilot AI Aug 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The filter-parameters syntax appears incorrect. Multiple parameters should be space-separated, but 'Name2' should be a separate parameter. The current syntax suggests Name2 is part of the first parameter's value.

Copilot uses AI. Check for mistakes.
- name: Update a filter for feature 'color' with label MyLabel and filter name 'MyFilter' with no parameters
text:
az appconfig feature filter update -n MyAppConfiguration --feature color --label MyLabel --filter-name MyFilter
Expand Down
Loading