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
22 changes: 22 additions & 0 deletions sdk/powerbidedicated/azure-mgmt-powerbidedicated/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Release History

## 1.1.0b2 (2026-07-06)

### Features Added

- Added model `TrackedResource`

### Breaking Changes

- This version introduces new hybrid models which have dual dictionary and model nature. Please follow https://aka.ms/azsdk/python/migrate/hybrid-models for migration.
- Renamed client `PowerBIDedicated` to `PowerBIDedicatedMgmtClient`
- Model `AutoScaleVCore` moved instance variable `capacity_limit`, `capacity_object_id` and `provisioning_state` under property `properties` whose type is `AutoScaleVCoreProperties`
- Model `AutoScaleVCoreUpdateParameters` moved instance variable `capacity_limit` under property `properties` whose type is `AutoScaleVCoreMutableProperties`
- Model `DedicatedCapacity` moved instance variable `administration`, `mode`, `tenant_id`, `friendly_name`, `state` and `provisioning_state` under property `properties` whose type is `DedicatedCapacityProperties`
- Model `DedicatedCapacityUpdateParameters` moved instance variable `administration`, `mode`, `tenant_id` and `friendly_name` under property `properties` whose type is `DedicatedCapacityMutableProperties`
- Model `Resource` deleted or renamed its instance variable `location`
- Model `Resource` deleted or renamed its instance variable `tags`
- Renamed enum `IdentityType` to `CreatedByType`

### Other Changes

- Deleted model `AutoScaleVCoreListResult`/`DedicatedCapacities`/`OperationListResult` which actually were not used by SDK users

## 1.0.1 (2026-05-19)

### Other Changes
Expand Down
6 changes: 3 additions & 3 deletions sdk/powerbidedicated/azure-mgmt-powerbidedicated/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.

- `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.powerbidedicated import PowerBIDedicated
from azure.mgmt.powerbidedicated import PowerBIDedicatedMgmtClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = PowerBIDedicated(credential=DefaultAzureCredential(), subscription_id=sub_id)
client = PowerBIDedicatedMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"commit": "549e13fda6874099890b133b993217f8cd325946",
"apiVersion": "2021-01-01",
"apiVersions": {
"Microsoft.PowerBIDedicated": "2021-01-01"
},
"commit": "3d1de464b5576fa149aed429795f6030313e31bb",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
"@autorest/python@6.50.0",
"@autorest/modelerfour@4.27.0"
],
"autorest_command": "autorest specification/powerbidedicated/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --package-mode=azure-mgmt --python --python-sdks-folder=/home/codespace/workspace/sdk --tag=package-2021-01-01 --use=@autorest/python@6.50.0 --use=@autorest/modelerfour@4.27.0 --version=3.10.2 --version-tolerant=False",
"readme": "specification/powerbidedicated/resource-manager/readme.md"
"typespec_src": "specification/powerbidedicated/resource-manager/Microsoft.PowerBIdedicated/PowerBIDedicated",
"emitterVersion": "0.63.2",
"httpClientPythonVersion": "^0.34.0"
}
Loading
Loading