You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resource Non-Human Identity Direct Access Object ### Description This object is used to represent a non-human identity with direct access to a resource.
The day and time the non-human identity's access will expire.
[optional]
Example
fromopal_security.models.resource_nhiimportResourceNHI# TODO update the JSON string belowjson="{}"# create an instance of ResourceNHI from a JSON stringresource_nhi_instance=ResourceNHI.from_json(json)
# print the JSON string representation of the objectprint(ResourceNHI.to_json())
# convert the object into a dictresource_nhi_dict=resource_nhi_instance.to_dict()
# create an instance of ResourceNHI from a dictresource_nhi_from_dict=ResourceNHI.from_dict(resource_nhi_dict)