ansys-api-discovery 0.6.1__py3-none-any.whl → 0.6.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ansys-api-discovery might be problematic. Click here for more details.

Files changed (25) hide show
  1. ansys/api/discovery/VERSION +1 -1
  2. ansys/api/discovery/v0/conditionsstructural.proto +189 -1
  3. ansys/api/discovery/v0/conditionsstructural_pb2.py +79 -43
  4. ansys/api/discovery/v0/conditionsstructural_pb2.pyi +378 -1
  5. ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py +1824 -399
  6. ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi +449 -0
  7. ansys/api/discovery/v0/monitors.proto +4 -99
  8. ansys/api/discovery/v0/monitors_pb2.py +12 -17
  9. ansys/api/discovery/v0/monitors_pb2.pyi +7 -214
  10. ansys/api/discovery/v0/results.proto +104 -0
  11. ansys/api/discovery/v0/results_pb2.py +32 -0
  12. ansys/api/discovery/v0/results_pb2.pyi +218 -0
  13. ansys/api/discovery/v0/results_pb2_grpc.py +4 -0
  14. ansys/api/discovery/v0/results_pb2_grpc.pyi +4 -0
  15. ansys/api/discovery/v0/unsupported.proto +33 -0
  16. ansys/api/discovery/v0/unsupported_pb2.py +35 -0
  17. ansys/api/discovery/v0/unsupported_pb2.pyi +54 -0
  18. ansys/api/discovery/v0/unsupported_pb2_grpc.py +102 -0
  19. ansys/api/discovery/v0/unsupported_pb2_grpc.pyi +41 -0
  20. {ansys_api_discovery-0.6.1.dist-info → ansys_api_discovery-0.6.3.dist-info}/METADATA +2 -2
  21. {ansys_api_discovery-0.6.1.dist-info → ansys_api_discovery-0.6.3.dist-info}/RECORD +25 -15
  22. {ansys_api_discovery-0.6.1.dist-info → ansys_api_discovery-0.6.3.dist-info}/LICENSE +0 -0
  23. {ansys_api_discovery-0.6.1.dist-info → ansys_api_discovery-0.6.3.dist-info}/WHEEL +0 -0
  24. {ansys_api_discovery-0.6.1.dist-info → ansys_api_discovery-0.6.3.dist-info}/entry_points.txt +0 -0
  25. {ansys_api_discovery-0.6.1.dist-info → ansys_api_discovery-0.6.3.dist-info}/top_level.txt +0 -0
@@ -98,7 +98,7 @@ class _MomentSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wra
98
98
  GLOBAL: MomentSpecification.ValueType = ... # 0
99
99
  LOCAL: MomentSpecification.ValueType = ... # 1
100
100
  class MomentSpecification(_MomentSpecification, metaclass=_MomentSpecificationEnumTypeWrapper):
101
- """Displacement enumerations
101
+ """Moment enumerations
102
102
 
103
103
  """
104
104
  pass
@@ -488,6 +488,146 @@ class ChangeMomentSpecificationRequest(google.protobuf.message.Message):
488
488
  def ClearField(self, field_name: typing_extensions.Literal["moment_specification",b"moment_specification","object_id",b"object_id"]) -> None: ...
489
489
  global___ChangeMomentSpecificationRequest = ChangeMomentSpecificationRequest
490
490
 
491
+ class MassCreationRequest(google.protobuf.message.Message):
492
+ """Mass"""
493
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
494
+ CREATION_DATA_FIELD_NUMBER: builtins.int
495
+ MASS_PROPERTIES_FIELD_NUMBER: builtins.int
496
+ @property
497
+ def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
498
+ @property
499
+ def mass_properties(self) -> global___MassProperties: ...
500
+ def __init__(self,
501
+ *,
502
+ creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
503
+ mass_properties : typing.Optional[global___MassProperties] = ...,
504
+ ) -> None: ...
505
+ def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","mass_properties",b"mass_properties"]) -> builtins.bool: ...
506
+ def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","mass_properties",b"mass_properties"]) -> None: ...
507
+ global___MassCreationRequest = MassCreationRequest
508
+
509
+ class MassCreationResponse(google.protobuf.message.Message):
510
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
511
+ CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
512
+ CONDITION_DATA_FIELD_NUMBER: builtins.int
513
+ @property
514
+ def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
515
+ @property
516
+ def condition_data(self) -> global___MassDefinition: ...
517
+ def __init__(self,
518
+ *,
519
+ condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
520
+ condition_data : typing.Optional[global___MassDefinition] = ...,
521
+ ) -> None: ...
522
+ def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
523
+ def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
524
+ global___MassCreationResponse = MassCreationResponse
525
+
526
+ class VelocityCreationRequest(google.protobuf.message.Message):
527
+ """Velocity"""
528
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
529
+ CREATION_DATA_FIELD_NUMBER: builtins.int
530
+ VELOCITY_PROPERTIES_FIELD_NUMBER: builtins.int
531
+ @property
532
+ def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
533
+ @property
534
+ def velocity_properties(self) -> global___VelocityProperties: ...
535
+ def __init__(self,
536
+ *,
537
+ creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
538
+ velocity_properties : typing.Optional[global___VelocityProperties] = ...,
539
+ ) -> None: ...
540
+ def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","velocity_properties",b"velocity_properties"]) -> builtins.bool: ...
541
+ def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","velocity_properties",b"velocity_properties"]) -> None: ...
542
+ global___VelocityCreationRequest = VelocityCreationRequest
543
+
544
+ class VelocityCreationResponse(google.protobuf.message.Message):
545
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
546
+ CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
547
+ CONDITION_DATA_FIELD_NUMBER: builtins.int
548
+ @property
549
+ def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
550
+ @property
551
+ def condition_data(self) -> global___VelocityDefinition: ...
552
+ def __init__(self,
553
+ *,
554
+ condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
555
+ condition_data : typing.Optional[global___VelocityDefinition] = ...,
556
+ ) -> None: ...
557
+ def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
558
+ def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
559
+ global___VelocityCreationResponse = VelocityCreationResponse
560
+
561
+ class AccelerationCreationRequest(google.protobuf.message.Message):
562
+ """Acceleration"""
563
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
564
+ CREATION_DATA_FIELD_NUMBER: builtins.int
565
+ ACCELERATION_PROPERTIES_FIELD_NUMBER: builtins.int
566
+ @property
567
+ def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
568
+ @property
569
+ def acceleration_properties(self) -> global___AccelerationProperties: ...
570
+ def __init__(self,
571
+ *,
572
+ creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
573
+ acceleration_properties : typing.Optional[global___AccelerationProperties] = ...,
574
+ ) -> None: ...
575
+ def HasField(self, field_name: typing_extensions.Literal["acceleration_properties",b"acceleration_properties","creation_data",b"creation_data"]) -> builtins.bool: ...
576
+ def ClearField(self, field_name: typing_extensions.Literal["acceleration_properties",b"acceleration_properties","creation_data",b"creation_data"]) -> None: ...
577
+ global___AccelerationCreationRequest = AccelerationCreationRequest
578
+
579
+ class AccelerationCreationResponse(google.protobuf.message.Message):
580
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
581
+ CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
582
+ CONDITION_DATA_FIELD_NUMBER: builtins.int
583
+ @property
584
+ def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
585
+ @property
586
+ def condition_data(self) -> global___AccelerationDefinition: ...
587
+ def __init__(self,
588
+ *,
589
+ condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
590
+ condition_data : typing.Optional[global___AccelerationDefinition] = ...,
591
+ ) -> None: ...
592
+ def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
593
+ def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
594
+ global___AccelerationCreationResponse = AccelerationCreationResponse
595
+
596
+ class BearingCreationRequest(google.protobuf.message.Message):
597
+ """Bearing"""
598
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
599
+ CREATION_DATA_FIELD_NUMBER: builtins.int
600
+ BEARING_PROPERTIES_FIELD_NUMBER: builtins.int
601
+ @property
602
+ def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
603
+ @property
604
+ def bearing_properties(self) -> global___BearingProperties: ...
605
+ def __init__(self,
606
+ *,
607
+ creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
608
+ bearing_properties : typing.Optional[global___BearingProperties] = ...,
609
+ ) -> None: ...
610
+ def HasField(self, field_name: typing_extensions.Literal["bearing_properties",b"bearing_properties","creation_data",b"creation_data"]) -> builtins.bool: ...
611
+ def ClearField(self, field_name: typing_extensions.Literal["bearing_properties",b"bearing_properties","creation_data",b"creation_data"]) -> None: ...
612
+ global___BearingCreationRequest = BearingCreationRequest
613
+
614
+ class BearingCreationResponse(google.protobuf.message.Message):
615
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
616
+ CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
617
+ CONDITION_DATA_FIELD_NUMBER: builtins.int
618
+ @property
619
+ def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
620
+ @property
621
+ def condition_data(self) -> global___BearingDefinition: ...
622
+ def __init__(self,
623
+ *,
624
+ condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
625
+ condition_data : typing.Optional[global___BearingDefinition] = ...,
626
+ ) -> None: ...
627
+ def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
628
+ def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
629
+ global___BearingCreationResponse = BearingCreationResponse
630
+
491
631
  class SupportGeneralDefinition(google.protobuf.message.Message):
492
632
  """Support condition definitions
493
633
 
@@ -837,3 +977,240 @@ class MomentDefinition(google.protobuf.message.Message):
837
977
  def HasField(self, field_name: typing_extensions.Literal["global",b"global","local",b"local"]) -> builtins.bool: ...
838
978
  def ClearField(self, field_name: typing_extensions.Literal["global",b"global","id",b"id","label",b"label","local",b"local","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
839
979
  global___MomentDefinition = MomentDefinition
980
+
981
+ class MassProperties(google.protobuf.message.Message):
982
+ """Mass condition definitions"""
983
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
984
+ MASS_MAGNITUDE_FIELD_NUMBER: builtins.int
985
+ REMOTE_POINT_FIELD_NUMBER: builtins.int
986
+ @property
987
+ def mass_magnitude(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
988
+ @property
989
+ def remote_point(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
990
+ def __init__(self,
991
+ *,
992
+ mass_magnitude : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
993
+ remote_point : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
994
+ ) -> None: ...
995
+ def HasField(self, field_name: typing_extensions.Literal["mass_magnitude",b"mass_magnitude","remote_point",b"remote_point"]) -> builtins.bool: ...
996
+ def ClearField(self, field_name: typing_extensions.Literal["mass_magnitude",b"mass_magnitude","remote_point",b"remote_point"]) -> None: ...
997
+ global___MassProperties = MassProperties
998
+
999
+ class MassDefinition(google.protobuf.message.Message):
1000
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1001
+ ID_FIELD_NUMBER: builtins.int
1002
+ PARENT_ID_FIELD_NUMBER: builtins.int
1003
+ LABEL_FIELD_NUMBER: builtins.int
1004
+ LOCATIONS_FIELD_NUMBER: builtins.int
1005
+ SUPPRESSED_FIELD_NUMBER: builtins.int
1006
+ MASS_FIELD_NUMBER: builtins.int
1007
+ id: typing.Text = ...
1008
+ parent_id: typing.Text = ...
1009
+ label: typing.Text = ...
1010
+ @property
1011
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
1012
+ suppressed: builtins.bool = ...
1013
+ @property
1014
+ def mass(self) -> global___MassProperties: ...
1015
+ def __init__(self,
1016
+ *,
1017
+ id : typing.Text = ...,
1018
+ parent_id : typing.Text = ...,
1019
+ label : typing.Text = ...,
1020
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
1021
+ suppressed : builtins.bool = ...,
1022
+ mass : typing.Optional[global___MassProperties] = ...,
1023
+ ) -> None: ...
1024
+ def HasField(self, field_name: typing_extensions.Literal["mass",b"mass"]) -> builtins.bool: ...
1025
+ def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","mass",b"mass","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
1026
+ global___MassDefinition = MassDefinition
1027
+
1028
+ class VelocityProperties(google.protobuf.message.Message):
1029
+ """Velocity condition definitions"""
1030
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1031
+ VELOCITY_FIELD_NUMBER: builtins.int
1032
+ REMOTE_POINT_FIELD_NUMBER: builtins.int
1033
+ @property
1034
+ def velocity(self) -> ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities: ...
1035
+ @property
1036
+ def remote_point(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
1037
+ def __init__(self,
1038
+ *,
1039
+ velocity : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities] = ...,
1040
+ remote_point : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
1041
+ ) -> None: ...
1042
+ def HasField(self, field_name: typing_extensions.Literal["remote_point",b"remote_point","velocity",b"velocity"]) -> builtins.bool: ...
1043
+ def ClearField(self, field_name: typing_extensions.Literal["remote_point",b"remote_point","velocity",b"velocity"]) -> None: ...
1044
+ global___VelocityProperties = VelocityProperties
1045
+
1046
+ class VelocityDefinition(google.protobuf.message.Message):
1047
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1048
+ ID_FIELD_NUMBER: builtins.int
1049
+ PARENT_ID_FIELD_NUMBER: builtins.int
1050
+ LABEL_FIELD_NUMBER: builtins.int
1051
+ LOCATIONS_FIELD_NUMBER: builtins.int
1052
+ SUPPRESSED_FIELD_NUMBER: builtins.int
1053
+ VELOCITY_FIELD_NUMBER: builtins.int
1054
+ id: typing.Text = ...
1055
+ parent_id: typing.Text = ...
1056
+ label: typing.Text = ...
1057
+ @property
1058
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
1059
+ suppressed: builtins.bool = ...
1060
+ @property
1061
+ def velocity(self) -> global___VelocityProperties: ...
1062
+ def __init__(self,
1063
+ *,
1064
+ id : typing.Text = ...,
1065
+ parent_id : typing.Text = ...,
1066
+ label : typing.Text = ...,
1067
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
1068
+ suppressed : builtins.bool = ...,
1069
+ velocity : typing.Optional[global___VelocityProperties] = ...,
1070
+ ) -> None: ...
1071
+ def HasField(self, field_name: typing_extensions.Literal["velocity",b"velocity"]) -> builtins.bool: ...
1072
+ def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed","velocity",b"velocity"]) -> None: ...
1073
+ global___VelocityDefinition = VelocityDefinition
1074
+
1075
+ class AccelerationProperties(google.protobuf.message.Message):
1076
+ """Acceleration condition definitions"""
1077
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1078
+ ACCELERATION_FIELD_NUMBER: builtins.int
1079
+ @property
1080
+ def acceleration(self) -> ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities: ...
1081
+ def __init__(self,
1082
+ *,
1083
+ acceleration : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities] = ...,
1084
+ ) -> None: ...
1085
+ def HasField(self, field_name: typing_extensions.Literal["acceleration",b"acceleration"]) -> builtins.bool: ...
1086
+ def ClearField(self, field_name: typing_extensions.Literal["acceleration",b"acceleration"]) -> None: ...
1087
+ global___AccelerationProperties = AccelerationProperties
1088
+
1089
+ class AccelerationDefinition(google.protobuf.message.Message):
1090
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1091
+ ID_FIELD_NUMBER: builtins.int
1092
+ PARENT_ID_FIELD_NUMBER: builtins.int
1093
+ LABEL_FIELD_NUMBER: builtins.int
1094
+ LOCATIONS_FIELD_NUMBER: builtins.int
1095
+ SUPPRESSED_FIELD_NUMBER: builtins.int
1096
+ ACCELERATION_FIELD_NUMBER: builtins.int
1097
+ id: typing.Text = ...
1098
+ parent_id: typing.Text = ...
1099
+ label: typing.Text = ...
1100
+ @property
1101
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
1102
+ suppressed: builtins.bool = ...
1103
+ @property
1104
+ def acceleration(self) -> global___AccelerationProperties: ...
1105
+ def __init__(self,
1106
+ *,
1107
+ id : typing.Text = ...,
1108
+ parent_id : typing.Text = ...,
1109
+ label : typing.Text = ...,
1110
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
1111
+ suppressed : builtins.bool = ...,
1112
+ acceleration : typing.Optional[global___AccelerationProperties] = ...,
1113
+ ) -> None: ...
1114
+ def HasField(self, field_name: typing_extensions.Literal["acceleration",b"acceleration"]) -> builtins.bool: ...
1115
+ def ClearField(self, field_name: typing_extensions.Literal["acceleration",b"acceleration","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
1116
+ global___AccelerationDefinition = AccelerationDefinition
1117
+
1118
+ class GravityProperties(google.protobuf.message.Message):
1119
+ """Gravity condition definitions"""
1120
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1121
+ ACCELERATION_FIELD_NUMBER: builtins.int
1122
+ INCLUDE_BUOYANCY_FIELD_NUMBER: builtins.int
1123
+ INCLUDE_SELF_WEIGHT_FIELD_NUMBER: builtins.int
1124
+ @property
1125
+ def acceleration(self) -> ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities: ...
1126
+ include_buoyancy: builtins.bool = ...
1127
+ include_self_weight: builtins.bool = ...
1128
+ def __init__(self,
1129
+ *,
1130
+ acceleration : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities] = ...,
1131
+ include_buoyancy : builtins.bool = ...,
1132
+ include_self_weight : builtins.bool = ...,
1133
+ ) -> None: ...
1134
+ def HasField(self, field_name: typing_extensions.Literal["acceleration",b"acceleration"]) -> builtins.bool: ...
1135
+ def ClearField(self, field_name: typing_extensions.Literal["acceleration",b"acceleration","include_buoyancy",b"include_buoyancy","include_self_weight",b"include_self_weight"]) -> None: ...
1136
+ global___GravityProperties = GravityProperties
1137
+
1138
+ class GravityDefinition(google.protobuf.message.Message):
1139
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1140
+ ID_FIELD_NUMBER: builtins.int
1141
+ PARENT_ID_FIELD_NUMBER: builtins.int
1142
+ LABEL_FIELD_NUMBER: builtins.int
1143
+ LOCATIONS_FIELD_NUMBER: builtins.int
1144
+ SUPPRESSED_FIELD_NUMBER: builtins.int
1145
+ GRAVITY_FIELD_NUMBER: builtins.int
1146
+ id: typing.Text = ...
1147
+ parent_id: typing.Text = ...
1148
+ label: typing.Text = ...
1149
+ @property
1150
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
1151
+ suppressed: builtins.bool = ...
1152
+ @property
1153
+ def gravity(self) -> global___GravityProperties: ...
1154
+ def __init__(self,
1155
+ *,
1156
+ id : typing.Text = ...,
1157
+ parent_id : typing.Text = ...,
1158
+ label : typing.Text = ...,
1159
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
1160
+ suppressed : builtins.bool = ...,
1161
+ gravity : typing.Optional[global___GravityProperties] = ...,
1162
+ ) -> None: ...
1163
+ def HasField(self, field_name: typing_extensions.Literal["gravity",b"gravity"]) -> builtins.bool: ...
1164
+ def ClearField(self, field_name: typing_extensions.Literal["gravity",b"gravity","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
1165
+ global___GravityDefinition = GravityDefinition
1166
+
1167
+ class BearingProperties(google.protobuf.message.Message):
1168
+ """Bearing condition definitions"""
1169
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1170
+ RADIAL_FORCE_FIELD_NUMBER: builtins.int
1171
+ THRUST_FORCE_FIELD_NUMBER: builtins.int
1172
+ ANGLE_FIELD_NUMBER: builtins.int
1173
+ @property
1174
+ def radial_force(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
1175
+ @property
1176
+ def thrust_force(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
1177
+ @property
1178
+ def angle(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
1179
+ def __init__(self,
1180
+ *,
1181
+ radial_force : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
1182
+ thrust_force : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
1183
+ angle : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
1184
+ ) -> None: ...
1185
+ def HasField(self, field_name: typing_extensions.Literal["angle",b"angle","radial_force",b"radial_force","thrust_force",b"thrust_force"]) -> builtins.bool: ...
1186
+ def ClearField(self, field_name: typing_extensions.Literal["angle",b"angle","radial_force",b"radial_force","thrust_force",b"thrust_force"]) -> None: ...
1187
+ global___BearingProperties = BearingProperties
1188
+
1189
+ class BearingDefinition(google.protobuf.message.Message):
1190
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
1191
+ ID_FIELD_NUMBER: builtins.int
1192
+ PARENT_ID_FIELD_NUMBER: builtins.int
1193
+ LABEL_FIELD_NUMBER: builtins.int
1194
+ LOCATIONS_FIELD_NUMBER: builtins.int
1195
+ SUPPRESSED_FIELD_NUMBER: builtins.int
1196
+ BEARING_FIELD_NUMBER: builtins.int
1197
+ id: typing.Text = ...
1198
+ parent_id: typing.Text = ...
1199
+ label: typing.Text = ...
1200
+ @property
1201
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
1202
+ suppressed: builtins.bool = ...
1203
+ @property
1204
+ def bearing(self) -> global___BearingProperties: ...
1205
+ def __init__(self,
1206
+ *,
1207
+ id : typing.Text = ...,
1208
+ parent_id : typing.Text = ...,
1209
+ label : typing.Text = ...,
1210
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
1211
+ suppressed : builtins.bool = ...,
1212
+ bearing : typing.Optional[global___BearingProperties] = ...,
1213
+ ) -> None: ...
1214
+ def HasField(self, field_name: typing_extensions.Literal["bearing",b"bearing"]) -> builtins.bool: ...
1215
+ def ClearField(self, field_name: typing_extensions.Literal["bearing",b"bearing","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
1216
+ global___BearingDefinition = BearingDefinition