[App Service] az functionapp create: Remove preview from Flex Consumption parameters#32122
Conversation
🔄AzureCLI-FullTest
|
️✔️AzureCLI-BreakingChangeTest
|
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
|
The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR. Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions). pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>
|
There was a problem hiding this comment.
Pull Request Overview
This PR removes the preview status from various Azure Function App flex consumption related parameters by removing is_preview=True flags from argument definitions.
- Removes preview flags from
functionapp list-flexconsumption-locationscommand arguments - Removes preview flags from
functionapp createcommand flex consumption parameters - Removes preview flags from
functionapp runtime configandfunctionapp scale configrelated arguments
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| c.argument('memory', help="Required momory from 1.0 to 4.0 ending with Gi e.g. 1.0Gi, ", is_preview=True) | ||
| c.argument('workload_profile_name', help="The name of the workload profile to run the app on.") | ||
| c.argument('cpu', type=float, help="Required CPU in cores from 0.5 to 2.0.") | ||
| c.argument('memory', help="Required momory from 1.0 to 4.0 ending with Gi e.g. 1.0Gi, ") |
There was a problem hiding this comment.
There's a spelling error in the help message: 'momory' should be 'memory'.
| c.argument('memory', help="Required momory from 1.0 to 4.0 ending with Gi e.g. 1.0Gi, ") | |
| c.argument('memory', help="Required memory from 1.0 to 4.0 ending with Gi e.g. 1.0Gi, ") |
az functionapp create: Remove preview functions az functionapp create: Remove preview from Flex Consumption parameters
az functionapp create: Remove preview from Flex Consumption parameters az functionapp create: Remove preview from Flex Consumption parameters
|
Please fix CI issues |
|
Hey @yonzhan, could you please run the build again? It's failing because of the title. I’ve updated it, but it didn’t trigger a new build. |
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
Related command
functionapp list-flexconsumption-locations
functionapp runtime config
functionapp create
Description
Removed preview from function app flex consumption related parameters
Testing Guide
az functionapp create --resource-group <RESOURCE_GROUP> --name <APP_NAME> --storage-account <STORAGE_NAME> --flexconsumption-location --runtime python --runtime-version 3.11
This checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.