revokePermissionProc
public RevokePermissionProcResponse revokePermissionProc(RevokePermissionProcRequest request) throws GPUdbException [DEPRECATED—please userevokePermissioninstead] Revokes a proc-level permission from a user or role.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.revokePermissionProc
public RevokePermissionProcResponse revokePermissionProc(String name, String permission, String procName, Map<String, String> options) throws GPUdbException [DEPRECATED—please userevokePermissioninstead] Revokes a proc-level permission from a user or role.Parameters:name- Name of the user or role from which the permission will be revoked. Must be an existing user or role.permission- Permission to revoke from the user or role. Supported values:PROC_ADMIN: Admin access to the proc.PROC_EXECUTE: Execute access to the proc.
procName- Name of the proc to which the permission grants access. Must be an existing proc, or an empty string if the permission grants access to all procs.options- Optional parameters. The default value is an emptyMap.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.