(self)
| 131 | return result |
| 132 | |
| 133 | def get_secure_command(self): |
| 134 | audit_script_args = build_command_args( |
| 135 | {name: v.get_secure_value() for name, v in self._parameter_values.items()}, |
| 136 | self.config) |
| 137 | audit_script_args = [str(a) for a in audit_script_args] |
| 138 | |
| 139 | command = self.script_base_command + audit_script_args |
| 140 | return ' '.join(command) |
| 141 | |
| 142 | def get_anonymized_output_stream(self): |
| 143 | return self.protected_output_stream |