File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,26 @@ service Components{
3434 rpc GetBeamBodies (ansys .api .dbu .v0 .EntityIdentifier ) returns (GetBeamBodiesResponse );
3535
3636 rpc GetPart (ansys .api .dbu .v0 .EntityIdentifier ) returns (Part );
37+
38+ rpc MakeIndependent (MakeIndependentRequest ) returns (MakeIndependentResponse );
39+
40+ rpc ImportGroups (ImportGroupsRequest ) returns (ImportGroupsResponse );
41+ }
42+
43+ message MakeIndependentResponse {
44+
45+ }
46+
47+ message ImportGroupsResponse {
48+
49+ }
50+
51+ message ImportGroupsRequest {
52+ ansys.api.dbu.v0.EntityIdentifier id = 1 ;
53+ }
54+
55+ message MakeIndependentRequest {
56+ repeated ansys.api.dbu.v0.EntityIdentifier ids = 1 ;
3757}
3858
3959message GetBeamBodiesResponse {
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ package ansys.api.geometry.v0;
44
55import "ansys/api/dbu/v0/dbumodels.proto" ;
66import "google/protobuf/struct.proto" ;
7- import "google/protobuf/wrappers.proto" ;
87
98option csharp_namespace = "Ansys.Api.Geometry.V0" ;
109
You can’t perform that action at this time.
0 commit comments