(self, advanced: bool = True, incremental: bool = False)
| 643 | return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request)) |
| 644 | |
| 645 | def configure(self, advanced: bool = True, incremental: bool = False): |
| 646 | request = json.dumps({"command": "configure", "advanced": advanced, "incremental": incremental}) |
| 647 | if self.is_function_machine: |
| 648 | return json.loads(core.BNPostWorkflowRequestForFunction(self.handle, request)) |
| 649 | else: |
| 650 | return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request)) |
| 651 | |
| 652 | def resume(self): |
| 653 | request = json.dumps({"command": "run"}) |
no outgoing calls
no test coverage detected