Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Check and manage Azure subscription quotas, usage limits, and request capacity increases
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/advanced-commands.md
1# Advanced Azure Quota Commands23Reference for less commonly used Azure quota CLI commands for tracking quota requests and operations.45## az quota request status list67Get current quota requests for a one-year period. Use oData filter to select requests.89**Syntax**:10```bash11az quota request status list --scope SCOPE [--filter FILTER] [--max-items N] [--next-token TOKEN] [--skip-token TOKEN] [--top N]12```1314**Required**:15- `--scope` - Target Azure resource URI1617**Optional**:18- `--filter` - Filter by requestSubmitTime (ge/le/eq), provisioningState (eq), resourceName (eq)19- `--max-items` - Total items to return20- `--next-token` - Pagination token from previous response21- `--skip-token` - Skip token for next page22- `--top` - Number of records to return2324**Examples**:25```bash26# List compute quota requests27az quota request status list --scope /subscriptions/{id}/providers/Microsoft.Compute/locations/eastus2829# List network quota requests30az quota request status list --scope /subscriptions/{id}/providers/Microsoft.Network/locations/eastus31```3233## az quota request status show3435Get quota request details and status by request ID. The ID is returned from `az quota update` PUT operation.3637**Syntax**:38```bash39az quota request status show --id REQUEST_ID --scope SCOPE40```4142**Required**:43- `--id` - Quota request ID44- `--scope` - Target Azure resource URI4546**Example**:47```bash48az quota request status show \49--id 2B5C8515-37D8-4B6A-879B-CD641A2CF605 \50--scope /subscriptions/{id}/providers/Microsoft.Compute/locations/eastus51```5253## az quota operation list5455List all operations supported by Microsoft.Quota resource provider.5657**Syntax**:58```bash59az quota operation list60```6162**Examples**:63```bash64# List all operations65az quota operation list6667# Table format68az quota operation list --output table69```70