Skip to content
Open
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions sdk/computelimit/azure-mgmt-computelimit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Release History

## 1.2.0 (2026-06-20)

### Features Added

- Client `ComputeLimitMgmtClient` added operation group `shared_limit_caps`
- Client `ComputeLimitMgmtClient` added operation group `member_cap_overrides`
- Added model `MemberCap`
- Added model `MemberCapOverride`
- Added model `MemberCapOverrideProperties`
- Added model `SetMemberCapOverridesRequest`
- Added model `SetMemberCapOverridesResult`
- Added model `SharedLimitCap`
- Added model `SharedLimitCapProperties`
- Added operation group `MemberCapOverridesOperations`
- Added operation group `SharedLimitCapsOperations`

## 1.1.0 (2026-05-26)

### Features Added
Expand Down
6 changes: 3 additions & 3 deletions sdk/computelimit/azure-mgmt-computelimit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pip install azure-identity

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.
By default, [Microsoft Entra](https://learn.microsoft.com/entra/fundamentals/what-is-entra) token authentication depends on correct configuration of the following environment variables.
Comment thread
ChenxiJiang333 marked this conversation as resolved.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
Expand All @@ -36,11 +36,11 @@ With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.computelimit import ComputeLimitClient
from azure.mgmt.computelimit import ComputeLimitMgmtClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = ComputeLimitClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
client = ComputeLimitMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples
Expand Down
9 changes: 5 additions & 4 deletions sdk/computelimit/azure-mgmt-computelimit/_metadata.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"apiVersion": "2026-06-01",
"apiVersion": "2026-07-01",
"apiVersions": {
"Microsoft.ComputeLimit": "2026-06-01"
"Microsoft.ComputeLimit": "2026-07-01"
},
"commit": "5376576f4c7cd72c82446ddaab93642c9fad6b6e",
"commit": "18ebae7ea8f6aefd83268aacdb1f480b24842726",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/computelimit/resource-manager/Microsoft.ComputeLimit/ComputeLimit",
"emitterVersion": "0.62.1"
"emitterVersion": "0.63.1",
"httpClientPythonVersion": "^0.32.0"
}
Loading
Loading