File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1- 0.3 .dev0
1+ 0.4 .dev0
Original file line number Diff line number Diff line change 11// Copyright 2022, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
22syntax = "proto3" ;
33package ansys.api.discovery.v1 ;
4+
5+ import "ansys/api/discovery/v1/streaming.proto" ;
6+
47option csharp_namespace = "Ansys.Api.Discovery.V1" ;
58option go_package = "ansys/api/discovery/v1" ;
69
10+
711service Application {
812
913 // Runs a script based on a file.
10- rpc RunScriptFile (RunScriptFileRequest ) returns (stream RunScriptFileResponse );
14+ rpc RunScriptFile (RunScriptFileRequest ) returns (stream StreamPackage );
1115
1216 // Runs a script based on a supplied string.
1317 rpc RunScript (RunScriptRequest ) returns (RunScriptResponse );
@@ -25,11 +29,6 @@ message RunScriptFileRequest{
2529 int32 api_version = 3 ;
2630}
2731
28- message RunScriptFileResponse {
29- // Results returned by script.
30- string script_output = 1 [json_name = "script_output" ];
31- }
32-
3332message RunScriptRequest {
3433 // Script source to execute.
3534 string script = 1 ;
You can’t perform that action at this time.
0 commit comments