(self)
| 207 | return response |
| 208 | |
| 209 | def create_analytical_instance(self): |
| 210 | request = message_pb2.CreateAnalyticalInstanceRequest( |
| 211 | session_id=self._session_id |
| 212 | ) |
| 213 | response = self._stub.CreateAnalyticalInstance(request) |
| 214 | return json.loads(response.engine_config), response.host_names |
| 215 | |
| 216 | def create_interactive_instance(self, object_id, schema_path, params, with_cypher): |
| 217 | request = message_pb2.CreateInteractiveInstanceRequest( |
no test coverage detected