你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
UserDelegationKey Class
Represents a user delegation key, provided to the user by Azure Storage based on their Azure Active Directory access token.
The fields are saved as simple strings since the user does not have to interact with this object; to generate an identify SAS, the user can simply pass it to the right API.
Constructor
Python
UserDelegationKey()
signed_expiry
The datetime this token expires.
Python
signed_expiry: str | None = None
signed_oid
Object ID of this token.
Python
signed_oid: str | None = None
signed_service
What service this key is valid for.
Python
signed_service: str | None = None
signed_start
The datetime this token becomes valid.
Python
signed_start: str | None = None
signed_tid
Tenant ID of the tenant that issued this token.
Python
signed_tid: str | None = None
signed_version
The version identifier of the REST service that created this token.
Python
signed_version: str | None = None
value
The user delegation key.
Python
value: str | None = None