Grant an End User authorization to the provided object.
def end_user_authorization(object_name, end_user, object_type='vmware', timeout=15)
Name | Type | Description | Choices |
object_name | str | The name of the object you wish to grant the | ​ |
end_user | str | The name of the end user you wish to grant authorization to. | ​ |
Name | Type | Description | Choices | Default |
object_type | str | The Rubrik object type you wish to backup. | vmware | vmware |
timeout | int | The number of seconds to wait to establish a connection the Rubrik cluster before returning a timeout error. | ​ | 15 |
Type | Return Value |
str | No change required. The End User " |
dict | The full API response from |
import rubrik_cdm​rubrik = rubrik_cdm.Connect()​vm_name = 'python-sdk-demo'end_user_name = "pythonsdk"​authorize = rubrik.end_user_authorization(vm_name, end_user_name)