Skip to content

Commit a20adce

Browse files
pyansys-ci-bottfs_caslservice
andauthored
sync: file sync performed by ansys-tools-repo-sync (#203)
Co-authored-by: tfs_caslservice <tfs_caslservice@cdcw22cslbld07>
1 parent b8d16ed commit a20adce

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

ansys/api/geometry/v0/commands.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,7 @@ message GetAssemblyResponse {
848848
map <string, CoordinateSystemList> component_coord_systems=7;
849849
map <string, int32> component_shared_topologies=8;
850850
repeated Beam beams=9;
851+
repeated Curve design_points=10;
851852
}
852853

853854
message MoveTranslateRequest{

ansys/api/geometry/v0/models.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ message Curve{
6868
string owner_name = 2;
6969
double length = 3;
7070
repeated Point points = 4;
71+
ansys.api.dbu.v0.EntityIdentifier parent_id = 5;
7172
}
7273

7374
message CurveGeometry {

ansys/api/geometry/v0/namedselections.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ service NamedSelections{
2121
rpc Delete(ansys.api.dbu.v0.EntityIdentifier) returns(google.protobuf.Empty);
2222

2323
rpc DeleteByName(DeleteByNameRequest) returns(google.protobuf.Empty);
24+
25+
rpc SetName(SetNameRequest) returns (SetNameResponse);
2426
}
2527

2628
message CreateRequest{
@@ -35,4 +37,12 @@ message GetAllResponse{
3537

3638
message DeleteByNameRequest{
3739
string name = 1;
40+
}
41+
42+
message SetNameRequest{
43+
ansys.api.dbu.v0.EntityIdentifier id = 1;
44+
string new_name = 2;
45+
}
46+
47+
message SetNameResponse{
3848
}

0 commit comments

Comments
 (0)