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

## 5.0.0b3 (2026-07-08)

### Features Added

- Model `RoleAssignmentProperties` added property `expiration_time`

## 5.0.0b2 (2026-04-14)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "5.0.0b2"
VERSION = "5.0.0b3"
Original file line number Diff line number Diff line change
Expand Up @@ -4203,6 +4203,7 @@ class RoleAssignment(ExtensionResource):
"created_by",
"updated_by",
"delegated_managed_identity_resource_id",
"expiration_time",
]

@overload
Expand Down Expand Up @@ -4335,6 +4336,8 @@ class RoleAssignmentProperties(_Model):
:vartype updated_by: str
:ivar delegated_managed_identity_resource_id: Id of the delegated managed identity resource.
:vartype delegated_managed_identity_resource_id: str
:ivar expiration_time: Time at which the role assignment expires.
:vartype expiration_time: str
"""

scope: Optional[str] = rest_field(visibility=["read"])
Expand Down Expand Up @@ -4372,6 +4375,8 @@ class RoleAssignmentProperties(_Model):
name="delegatedManagedIdentityResourceId", visibility=["read", "create", "update", "delete", "query"]
)
"""Id of the delegated managed identity resource."""
expiration_time: Optional[str] = rest_field(name="expirationTime", visibility=["read"])
"""Time at which the role assignment expires."""

@overload
def __init__(
Expand Down
Loading