Skip to content
Closed
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
7 changes: 7 additions & 0 deletions .chronus/changes/azure-location-2025-6-1-12-50-57.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
changeKind: fix
packages:
- "@azure-tools/typespec-azure-resource-manager"
---

`location` in `TrackedResource` should be `azureLocation` instead of `string`.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ model TrackedResource extends Resource {

/** The geo-location where the resource lives */
@visibility(Lifecycle.Read, Lifecycle.Create)
location: string;
location: azureLocation;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2484,10 +2484,10 @@ model Azure.ResourceManager.CommonTypes.TrackedResource

#### Properties

| Name | Type | Description |
| -------- | ---------------- | ----------------------------------------- |
| tags? | `Record<string>` | Resource tags. |
| location | `string` | The geo-location where the resource lives |
| Name | Type | Description |
| -------- | -------------------- | ----------------------------------------- |
| tags? | `Record<string>` | Resource tags. |
| location | `Core.azureLocation` | The geo-location where the resource lives |

### `UserAssignedIdentities` {#Azure.ResourceManager.CommonTypes.UserAssignedIdentities}

Expand Down
Loading