-
Notifications
You must be signed in to change notification settings - Fork 4.2k
[ComputeLimit] Fix oob failure #29288
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| --- | ||
| Module Name: Az.ComputeLimit | ||
| Module Guid: adcff8bf-1b57-436b-8be0-330863504a1f | ||
| Download Help Link: https://learn.microsoft.com/powershell/module/az.computelimit | ||
| Help Version: 1.0.0.0 | ||
| Locale: en-US | ||
| --- | ||
|
|
||
| # Az.ComputeLimit Module | ||
| ## Description | ||
| Microsoft Azure PowerShell: ComputeLimit cmdlets | ||
|
|
||
| ## Az.ComputeLimit Cmdlets | ||
| ### [Add-AzGuestSubscription](Add-AzGuestSubscription.md) | ||
| Adds a subscription as a guest to consume the compute limits shared by the host subscription. | ||
|
|
||
| ### [Add-AzSharedLimit](Add-AzSharedLimit.md) | ||
| Enables sharing of a compute limit by the host subscription with its guest subscriptions. | ||
|
|
||
| ### [Get-AzGuestSubscription](Get-AzGuestSubscription.md) | ||
| Gets the properties of a guest subscription. | ||
|
|
||
| ### [Get-AzSharedLimit](Get-AzSharedLimit.md) | ||
| Gets the properties of a compute limit shared by the host subscription with its guest subscriptions. | ||
|
|
||
| ### [Remove-AzGuestSubscription](Remove-AzGuestSubscription.md) | ||
| Deletes a subscription as a guest to stop consuming the compute limits shared by the host subscription. | ||
|
|
||
| ### [Remove-AzSharedLimit](Remove-AzSharedLimit.md) | ||
| Disables sharing of a compute limit by the host subscription with its guest subscriptions. | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Resources | ||
| This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder. | ||
|
|
||
| ## Info | ||
| - Modifiable: yes | ||
| - Generated: no | ||
| - Committed: yes | ||
| - Packaged: no | ||
|
|
||
| ## Purpose | ||
| Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact. | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -24,6 +24,6 @@ if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { | |||||
| } | ||||||
| $env = @{} | ||||||
| if (Test-Path -Path $envFilePath) { | ||||||
| $env = Get-Content $envFilePath | ConvertFrom-Json | ||||||
| $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json | ||||||
|
||||||
| $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json | |
| $env = Get-Content -Path $envFilePath | ConvertFrom-Json |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,4 +1,4 @@ | ||||
| | ||||
|
|
||||
|
||||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -18,4 +18,6 @@ | |||||||||
| - Additional information about change #1 | ||||||||||
| --> | ||||||||||
| ## Upcoming Release | ||||||||||
|
||||||||||
| ## Upcoming Release | |
| ## Upcoming Release | |
| * Updated packaging configuration for Az.ComputeLimit module | |
| - No changes to cmdlet behavior, improved build and manifest setup |
Copilot
AI
Mar 20, 2026
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.
The changelog template at the top specifies release sections should be titled ## YYYY.MM.DD - Version X.Y.Z. ## Version 0.1.0 doesn’t follow that format; please include the release date in the header to match the documented convention.
| ## Version 0.1.0 | |
| ## 2024.01.01 - Version 0.1.0 |
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.
This README uses a Windows-style relative path (
..\custom). Other module template READMEs in this repo use forward-slash relative paths (../custom) for consistency and to avoid confusion on non-Windows platforms; update the path accordingly.