Add options property to User

openstack.identity.v3.user.User missing options property while it is
in the API.

Closes-Bug: #2085014
Change-Id: Ib1e0d3936b9536dcac4fc175f6701c3a02cd53f3
This commit is contained in:
Yosef S
2024-10-20 14:00:06 +03:30
parent 0b592bceb9
commit 545f0af99c

View File

@@ -71,3 +71,5 @@ class User(resource.Resource):
#: This is a response object attribute, not valid for requests. #: This is a response object attribute, not valid for requests.
#: *New in version 3.7* #: *New in version 3.7*
password_expires_at = resource.Body('password_expires_at') password_expires_at = resource.Body('password_expires_at')
#: A dictionary of users extra options.
options = resource.Body('options', type=dict, default={})