ansys-api-discovery 0.5.2__py3-none-any.whl → 0.6.0__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 (48) hide show
  1. ansys/api/discovery/VERSION +1 -1
  2. ansys/api/discovery/v0/conditions.proto +11 -46
  3. ansys/api/discovery/v0/conditions_pb2.py +12 -70
  4. ansys/api/discovery/v0/conditions_pb2.pyi +16 -88
  5. ansys/api/discovery/v0/conditions_pb2_grpc.py +40 -139
  6. ansys/api/discovery/v0/conditions_pb2_grpc.pyi +20 -50
  7. ansys/api/discovery/v0/conditionsfluid.proto +246 -0
  8. ansys/api/discovery/v0/conditionsfluid_pb2.py +85 -0
  9. ansys/api/discovery/v0/conditionsfluid_pb2.pyi +590 -0
  10. ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py +662 -0
  11. ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi +208 -0
  12. ansys/api/discovery/v0/conditionsstructural.proto +407 -0
  13. ansys/api/discovery/v0/conditionsstructural_pb2.py +113 -0
  14. ansys/api/discovery/v0/conditionsstructural_pb2.pyi +839 -0
  15. ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py +2746 -0
  16. ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi +854 -0
  17. ansys/api/discovery/v0/conditionsthermal.proto +179 -0
  18. ansys/api/discovery/v0/conditionsthermal_pb2.py +63 -0
  19. ansys/api/discovery/v0/conditionsthermal_pb2.pyi +399 -0
  20. ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py +665 -0
  21. ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi +217 -0
  22. ansys/api/discovery/v0/definedvariationstable.proto +12 -0
  23. ansys/api/discovery/v0/definedvariationstable_pb2.py +12 -116
  24. ansys/api/discovery/v0/definedvariationstable_pb2.pyi +16 -0
  25. ansys/api/discovery/v0/definedvariationstable_pb2_grpc.py +68 -0
  26. ansys/api/discovery/v0/definedvariationstable_pb2_grpc.pyi +26 -0
  27. ansys/api/discovery/v0/discoverymodels.proto +91 -25
  28. ansys/api/discovery/v0/discoverymodels_pb2.py +59 -211
  29. ansys/api/discovery/v0/discoverymodels_pb2.pyi +264 -50
  30. ansys/api/discovery/v0/historytrackparameters_pb2.py +3 -50
  31. ansys/api/discovery/v0/messaging.proto +0 -2
  32. ansys/api/discovery/v0/messaging_pb2.py +8 -20
  33. ansys/api/discovery/v0/scriptparameters_pb2.py +3 -37
  34. ansys/api/discovery/v0/simulations.proto +0 -1
  35. ansys/api/discovery/v0/simulations_pb2.py +8 -19
  36. ansys/api/discovery/v0/solution.proto +18 -2
  37. ansys/api/discovery/v0/solution_pb2.py +18 -40
  38. ansys/api/discovery/v0/solution_pb2.pyi +48 -0
  39. ansys/api/discovery/v0/solution_pb2_grpc.py +33 -0
  40. ansys/api/discovery/v0/solution_pb2_grpc.pyi +10 -0
  41. ansys/api/discovery/v0/units_pb2.py +3 -1232
  42. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/METADATA +8 -8
  43. ansys_api_discovery-0.6.0.dist-info/RECORD +70 -0
  44. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/WHEEL +1 -1
  45. ansys_api_discovery-0.5.2.dist-info/RECORD +0 -55
  46. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/LICENSE +0 -0
  47. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/entry_points.txt +0 -0
  48. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/top_level.txt +0 -0
@@ -3,6 +3,7 @@
3
3
  isort:skip_file
4
4
  """
5
5
  import ansys.api.dbu.v0.dbumodels_pb2
6
+ import ansys.api.geometry.v0.models_pb2
6
7
  import builtins
7
8
  import google.protobuf.descriptor
8
9
  import google.protobuf.internal.containers
@@ -32,25 +33,6 @@ UNKNOWN: InputParameterType.ValueType = ... # 3
32
33
  global___InputParameterType = InputParameterType
33
34
 
34
35
 
35
- class _HeatSpecification:
36
- ValueType = typing.NewType('ValueType', builtins.int)
37
- V: typing_extensions.TypeAlias = ValueType
38
- class _HeatSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_HeatSpecification.ValueType], builtins.type):
39
- DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
40
- TOTALHEAT: HeatSpecification.ValueType = ... # 0
41
- HEATPERUNITVOLUMEORAREA: HeatSpecification.ValueType = ... # 1
42
- class HeatSpecification(_HeatSpecification, metaclass=_HeatSpecificationEnumTypeWrapper):
43
- """Heat
44
-
45
- Defines how heat is specified
46
- """
47
- pass
48
-
49
- TOTALHEAT: HeatSpecification.ValueType = ... # 0
50
- HEATPERUNITVOLUMEORAREA: HeatSpecification.ValueType = ... # 1
51
- global___HeatSpecification = HeatSpecification
52
-
53
-
54
36
  class _LocationSpecification:
55
37
  ValueType = typing.NewType('ValueType', builtins.int)
56
38
  V: typing_extensions.TypeAlias = ValueType
@@ -59,7 +41,7 @@ class _LocationSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_w
59
41
  FACELOCATIONS: LocationSpecification.ValueType = ... # 0
60
42
  BODYLOCATIONS: LocationSpecification.ValueType = ... # 1
61
43
  class LocationSpecification(_LocationSpecification, metaclass=_LocationSpecificationEnumTypeWrapper):
62
- """Defines whether heat is applied to body or face"""
44
+ """Defines the type of location, some conditions support application to either bodies and faces"""
63
45
  pass
64
46
 
65
47
  FACELOCATIONS: LocationSpecification.ValueType = ... # 0
@@ -153,6 +135,7 @@ class _QuantityTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._E
153
135
  QUANTITY_TYPE_VOLUME_PER_LENGTH: QuantityType.ValueType = ... # 78
154
136
  QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA: QuantityType.ValueType = ... # 79
155
137
  QUANTITY_TYPE_NONE: QuantityType.ValueType = ... # 80
138
+ QUANTITY_TYPE_UNKNOWN: QuantityType.ValueType = ... # 81
156
139
  class QuantityType(_QuantityType, metaclass=_QuantityTypeEnumTypeWrapper):
157
140
  """Represents the quantity type for a physics parameter."""
158
141
  pass
@@ -238,6 +221,7 @@ QUANTITY_TYPE_VOLUME_FLOW: QuantityType.ValueType = ... # 77
238
221
  QUANTITY_TYPE_VOLUME_PER_LENGTH: QuantityType.ValueType = ... # 78
239
222
  QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA: QuantityType.ValueType = ... # 79
240
223
  QUANTITY_TYPE_NONE: QuantityType.ValueType = ... # 80
224
+ QUANTITY_TYPE_UNKNOWN: QuantityType.ValueType = ... # 81
241
225
  global___QuantityType = QuantityType
242
226
 
243
227
 
@@ -450,63 +434,293 @@ class Simulation(google.protobuf.message.Message):
450
434
  def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label"]) -> None: ...
451
435
  global___Simulation = Simulation
452
436
 
453
- class Heat(google.protobuf.message.Message):
454
- """Heat definition"""
437
+ class ChangeLocationRequest(google.protobuf.message.Message):
438
+ """General Requests
439
+
440
+ """
455
441
  DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
456
- ID_FIELD_NUMBER: builtins.int
457
- PARENTID_FIELD_NUMBER: builtins.int
458
- LABEL_FIELD_NUMBER: builtins.int
442
+ OBJECT_ID_FIELD_NUMBER: builtins.int
459
443
  LOCATIONS_FIELD_NUMBER: builtins.int
460
- SUPPRESSED_FIELD_NUMBER: builtins.int
461
- HEAT_SPECIFCATION_FIELD_NUMBER: builtins.int
462
- TOTAL_HEAT_FIELD_NUMBER: builtins.int
463
- HEAT_PER_UNITVOLUME_FIELD_NUMBER: builtins.int
464
- HEAT_PER_UNITAREA_FIELD_NUMBER: builtins.int
465
- id: typing.Text = ...
466
- parentid: typing.Text = ...
467
- label: typing.Text = ...
444
+ object_id: typing.Text = ...
468
445
  @property
469
446
  def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
470
- suppressed: builtins.bool = ...
471
- heat_specifcation: global___HeatSpecification.ValueType = ...
447
+ def __init__(self,
448
+ *,
449
+ object_id : typing.Text = ...,
450
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
451
+ ) -> None: ...
452
+ def ClearField(self, field_name: typing_extensions.Literal["locations",b"locations","object_id",b"object_id"]) -> None: ...
453
+ global___ChangeLocationRequest = ChangeLocationRequest
454
+
455
+ class ChangeLocationExtendedRequest(google.protobuf.message.Message):
456
+ """enables the type of location to be changed as well as the scope. Only supported for specific condition types"""
457
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
458
+ CHANGE_LOCATION_REQUEST_FIELD_NUMBER: builtins.int
459
+ LOCATION_SPECIFICATION_FIELD_NUMBER: builtins.int
472
460
  @property
473
- def total_heat(self) -> global___Quantity: ...
461
+ def change_location_request(self) -> global___ChangeLocationRequest: ...
462
+ location_specification: global___LocationSpecification.ValueType = ...
463
+ def __init__(self,
464
+ *,
465
+ change_location_request : typing.Optional[global___ChangeLocationRequest] = ...,
466
+ location_specification : global___LocationSpecification.ValueType = ...,
467
+ ) -> None: ...
468
+ def HasField(self, field_name: typing_extensions.Literal["change_location_request",b"change_location_request"]) -> builtins.bool: ...
469
+ def ClearField(self, field_name: typing_extensions.Literal["change_location_request",b"change_location_request","location_specification",b"location_specification"]) -> None: ...
470
+ global___ChangeLocationExtendedRequest = ChangeLocationExtendedRequest
471
+
472
+ class ChangeQuantityRequest(google.protobuf.message.Message):
473
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
474
+ OBJECT_ID_FIELD_NUMBER: builtins.int
475
+ QUANTITY_FIELD_NUMBER: builtins.int
476
+ object_id: typing.Text = ...
474
477
  @property
475
- def heat_per_unitvolume(self) -> global___Quantity: ...
478
+ def quantity(self) -> global___Quantity: ...
479
+ def __init__(self,
480
+ *,
481
+ object_id : typing.Text = ...,
482
+ quantity : typing.Optional[global___Quantity] = ...,
483
+ ) -> None: ...
484
+ def HasField(self, field_name: typing_extensions.Literal["quantity",b"quantity"]) -> builtins.bool: ...
485
+ def ClearField(self, field_name: typing_extensions.Literal["object_id",b"object_id","quantity",b"quantity"]) -> None: ...
486
+ global___ChangeQuantityRequest = ChangeQuantityRequest
487
+
488
+ class ChangeBooleanRequest(google.protobuf.message.Message):
489
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
490
+ OBJECT_ID_FIELD_NUMBER: builtins.int
491
+ BOOLEAN_VALUE_FIELD_NUMBER: builtins.int
492
+ object_id: typing.Text = ...
493
+ boolean_value: builtins.bool = ...
494
+ def __init__(self,
495
+ *,
496
+ object_id : typing.Text = ...,
497
+ boolean_value : builtins.bool = ...,
498
+ ) -> None: ...
499
+ def ClearField(self, field_name: typing_extensions.Literal["boolean_value",b"boolean_value","object_id",b"object_id"]) -> None: ...
500
+ global___ChangeBooleanRequest = ChangeBooleanRequest
501
+
502
+ class ChangeDirectionRequest(google.protobuf.message.Message):
503
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
504
+ OBJECT_ID_FIELD_NUMBER: builtins.int
505
+ DIRECTION_FIELD_NUMBER: builtins.int
506
+ object_id: typing.Text = ...
476
507
  @property
477
- def heat_per_unitarea(self) -> global___Quantity: ...
508
+ def direction(self) -> ansys.api.geometry.v0.models_pb2.Direction: ...
478
509
  def __init__(self,
479
510
  *,
480
- id : typing.Text = ...,
481
- parentid : typing.Text = ...,
482
- label : typing.Text = ...,
511
+ object_id : typing.Text = ...,
512
+ direction : typing.Optional[ansys.api.geometry.v0.models_pb2.Direction] = ...,
513
+ ) -> None: ...
514
+ def HasField(self, field_name: typing_extensions.Literal["direction",b"direction"]) -> builtins.bool: ...
515
+ def ClearField(self, field_name: typing_extensions.Literal["direction",b"direction","object_id",b"object_id"]) -> None: ...
516
+ global___ChangeDirectionRequest = ChangeDirectionRequest
517
+
518
+ class ChangeCommandRequest(google.protobuf.message.Message):
519
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
520
+ OBJECT_ID_FIELD_NUMBER: builtins.int
521
+ object_id: typing.Text = ...
522
+ def __init__(self,
523
+ *,
524
+ object_id : typing.Text = ...,
525
+ ) -> None: ...
526
+ def ClearField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> None: ...
527
+ global___ChangeCommandRequest = ChangeCommandRequest
528
+
529
+ class ScopedConditionCreationData(google.protobuf.message.Message):
530
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
531
+ OBJECT_ID_FIELD_NUMBER: builtins.int
532
+ SIMULATION_ID_FIELD_NUMBER: builtins.int
533
+ LOCATIONS_FIELD_NUMBER: builtins.int
534
+ object_id: typing.Text = ...
535
+ simulation_id: typing.Text = ...
536
+ @property
537
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
538
+ def __init__(self,
539
+ *,
540
+ object_id : typing.Optional[typing.Text] = ...,
541
+ simulation_id : typing.Text = ...,
483
542
  locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
484
- suppressed : builtins.bool = ...,
485
- heat_specifcation : global___HeatSpecification.ValueType = ...,
486
- total_heat : typing.Optional[global___Quantity] = ...,
487
- heat_per_unitvolume : typing.Optional[global___Quantity] = ...,
488
- heat_per_unitarea : typing.Optional[global___Quantity] = ...,
489
543
  ) -> None: ...
490
- def HasField(self, field_name: typing_extensions.Literal["heat_per_unitarea",b"heat_per_unitarea","heat_per_unitvolume",b"heat_per_unitvolume","total_heat",b"total_heat"]) -> builtins.bool: ...
491
- def ClearField(self, field_name: typing_extensions.Literal["heat_per_unitarea",b"heat_per_unitarea","heat_per_unitvolume",b"heat_per_unitvolume","heat_specifcation",b"heat_specifcation","id",b"id","label",b"label","locations",b"locations","parentid",b"parentid","suppressed",b"suppressed","total_heat",b"total_heat"]) -> None: ...
492
- global___Heat = Heat
544
+ def HasField(self, field_name: typing_extensions.Literal["_object_id",b"_object_id","object_id",b"object_id"]) -> builtins.bool: ...
545
+ def ClearField(self, field_name: typing_extensions.Literal["_object_id",b"_object_id","locations",b"locations","object_id",b"object_id","simulation_id",b"simulation_id"]) -> None: ...
546
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_object_id",b"_object_id"]) -> typing.Optional[typing_extensions.Literal["object_id"]]: ...
547
+ global___ScopedConditionCreationData = ScopedConditionCreationData
548
+
549
+ class ConditionChangedResponse(google.protobuf.message.Message):
550
+ """General Responses
551
+
552
+ """
553
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
554
+ SUCCESS_FIELD_NUMBER: builtins.int
555
+ MESSAGE_FIELD_NUMBER: builtins.int
556
+ success: builtins.bool = ...
557
+ message: typing.Text = ...
558
+ def __init__(self,
559
+ *,
560
+ success : builtins.bool = ...,
561
+ message : typing.Text = ...,
562
+ ) -> None: ...
563
+ def ClearField(self, field_name: typing_extensions.Literal["message",b"message","success",b"success"]) -> None: ...
564
+ global___ConditionChangedResponse = ConditionChangedResponse
565
+
566
+ class ConditionCreationResponse(google.protobuf.message.Message):
567
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
568
+ SUCCESS_FIELD_NUMBER: builtins.int
569
+ MESSAGE_FIELD_NUMBER: builtins.int
570
+ success: builtins.bool = ...
571
+ message: typing.Text = ...
572
+ def __init__(self,
573
+ *,
574
+ success : builtins.bool = ...,
575
+ message : typing.Text = ...,
576
+ ) -> None: ...
577
+ def ClearField(self, field_name: typing_extensions.Literal["message",b"message","success",b"success"]) -> None: ...
578
+ global___ConditionCreationResponse = ConditionCreationResponse
579
+
580
+ class MessageResponse(google.protobuf.message.Message):
581
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
582
+ MESSAGE_FIELD_NUMBER: builtins.int
583
+ message: typing.Text = ...
584
+ def __init__(self,
585
+ *,
586
+ message : typing.Text = ...,
587
+ ) -> None: ...
588
+ def ClearField(self, field_name: typing_extensions.Literal["message",b"message"]) -> None: ...
589
+ global___MessageResponse = MessageResponse
493
590
 
494
591
  class Quantity(google.protobuf.message.Message):
592
+ """Quantity Data"""
495
593
  DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
496
594
  QUANTITY_TYPE_FIELD_NUMBER: builtins.int
497
595
  QUANTITY_VALUE_FIELD_NUMBER: builtins.int
498
596
  UNIT_FIELD_NUMBER: builtins.int
499
597
  UNIT_ABBREVIATION_FIELD_NUMBER: builtins.int
598
+ AS_STRING_FIELD_NUMBER: builtins.int
500
599
  quantity_type: global___QuantityType.ValueType = ...
600
+ """not required in cases where the usage context defines the quantity type"""
601
+
501
602
  quantity_value: builtins.float = ...
502
603
  unit: builtins.int = ...
503
604
  unit_abbreviation: typing.Text = ...
605
+ """not required in cases where the usage context defines the abbreviation"""
606
+
607
+ as_string: typing.Text = ...
608
+ """Optional, but if not empty, all other properties will be defaulted from it."""
609
+
504
610
  def __init__(self,
505
611
  *,
506
612
  quantity_type : global___QuantityType.ValueType = ...,
507
613
  quantity_value : builtins.float = ...,
508
614
  unit : builtins.int = ...,
509
615
  unit_abbreviation : typing.Text = ...,
616
+ as_string : typing.Text = ...,
510
617
  ) -> None: ...
511
- def ClearField(self, field_name: typing_extensions.Literal["quantity_type",b"quantity_type","quantity_value",b"quantity_value","unit",b"unit","unit_abbreviation",b"unit_abbreviation"]) -> None: ...
618
+ def ClearField(self, field_name: typing_extensions.Literal["as_string",b"as_string","quantity_type",b"quantity_type","quantity_value",b"quantity_value","unit",b"unit","unit_abbreviation",b"unit_abbreviation"]) -> None: ...
512
619
  global___Quantity = Quantity
620
+
621
+ class QuantityVector(google.protobuf.message.Message):
622
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
623
+ X_FIELD_NUMBER: builtins.int
624
+ Y_FIELD_NUMBER: builtins.int
625
+ Z_FIELD_NUMBER: builtins.int
626
+ @property
627
+ def x(self) -> global___Quantity: ...
628
+ @property
629
+ def y(self) -> global___Quantity: ...
630
+ @property
631
+ def z(self) -> global___Quantity: ...
632
+ def __init__(self,
633
+ *,
634
+ x : typing.Optional[global___Quantity] = ...,
635
+ y : typing.Optional[global___Quantity] = ...,
636
+ z : typing.Optional[global___Quantity] = ...,
637
+ ) -> None: ...
638
+ def HasField(self, field_name: typing_extensions.Literal["x",b"x","y",b"y","z",b"z"]) -> builtins.bool: ...
639
+ def ClearField(self, field_name: typing_extensions.Literal["x",b"x","y",b"y","z",b"z"]) -> None: ...
640
+ global___QuantityVector = QuantityVector
641
+
642
+ class OptionalVector(google.protobuf.message.Message):
643
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
644
+ IS_DEFINED_FIELD_NUMBER: builtins.int
645
+ VECTOR_FIELD_NUMBER: builtins.int
646
+ is_defined: builtins.bool = ...
647
+ @property
648
+ def vector(self) -> global___QuantityVector: ...
649
+ def __init__(self,
650
+ *,
651
+ is_defined : builtins.bool = ...,
652
+ vector : typing.Optional[global___QuantityVector] = ...,
653
+ ) -> None: ...
654
+ def HasField(self, field_name: typing_extensions.Literal["vector",b"vector"]) -> builtins.bool: ...
655
+ def ClearField(self, field_name: typing_extensions.Literal["is_defined",b"is_defined","vector",b"vector"]) -> None: ...
656
+ global___OptionalVector = OptionalVector
657
+
658
+ class OptionalQuantity(google.protobuf.message.Message):
659
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
660
+ IS_DEFINED_FIELD_NUMBER: builtins.int
661
+ QUANTITY_FIELD_NUMBER: builtins.int
662
+ is_defined: builtins.bool = ...
663
+ @property
664
+ def quantity(self) -> global___Quantity: ...
665
+ def __init__(self,
666
+ *,
667
+ is_defined : builtins.bool = ...,
668
+ quantity : typing.Optional[global___Quantity] = ...,
669
+ ) -> None: ...
670
+ def HasField(self, field_name: typing_extensions.Literal["quantity",b"quantity"]) -> builtins.bool: ...
671
+ def ClearField(self, field_name: typing_extensions.Literal["is_defined",b"is_defined","quantity",b"quantity"]) -> None: ...
672
+ global___OptionalQuantity = OptionalQuantity
673
+
674
+ class TensorOfOptionalQuantities(google.protobuf.message.Message):
675
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
676
+ DX_FIELD_NUMBER: builtins.int
677
+ DY_FIELD_NUMBER: builtins.int
678
+ DZ_FIELD_NUMBER: builtins.int
679
+ RX_FIELD_NUMBER: builtins.int
680
+ RY_FIELD_NUMBER: builtins.int
681
+ RZ_FIELD_NUMBER: builtins.int
682
+ @property
683
+ def dx(self) -> global___OptionalQuantity: ...
684
+ @property
685
+ def dy(self) -> global___OptionalQuantity: ...
686
+ @property
687
+ def dz(self) -> global___OptionalQuantity: ...
688
+ @property
689
+ def rx(self) -> global___OptionalQuantity: ...
690
+ @property
691
+ def ry(self) -> global___OptionalQuantity: ...
692
+ @property
693
+ def rz(self) -> global___OptionalQuantity: ...
694
+ def __init__(self,
695
+ *,
696
+ dx : typing.Optional[global___OptionalQuantity] = ...,
697
+ dy : typing.Optional[global___OptionalQuantity] = ...,
698
+ dz : typing.Optional[global___OptionalQuantity] = ...,
699
+ rx : typing.Optional[global___OptionalQuantity] = ...,
700
+ ry : typing.Optional[global___OptionalQuantity] = ...,
701
+ rz : typing.Optional[global___OptionalQuantity] = ...,
702
+ ) -> None: ...
703
+ def HasField(self, field_name: typing_extensions.Literal["dx",b"dx","dy",b"dy","dz",b"dz","rx",b"rx","ry",b"ry","rz",b"rz"]) -> builtins.bool: ...
704
+ def ClearField(self, field_name: typing_extensions.Literal["dx",b"dx","dy",b"dy","dz",b"dz","rx",b"rx","ry",b"ry","rz",b"rz"]) -> None: ...
705
+ global___TensorOfOptionalQuantities = TensorOfOptionalQuantities
706
+
707
+ class VectorOfOptionalQuantities(google.protobuf.message.Message):
708
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
709
+ X_FIELD_NUMBER: builtins.int
710
+ Y_FIELD_NUMBER: builtins.int
711
+ Z_FIELD_NUMBER: builtins.int
712
+ @property
713
+ def x(self) -> global___OptionalQuantity: ...
714
+ @property
715
+ def y(self) -> global___OptionalQuantity: ...
716
+ @property
717
+ def z(self) -> global___OptionalQuantity: ...
718
+ def __init__(self,
719
+ *,
720
+ x : typing.Optional[global___OptionalQuantity] = ...,
721
+ y : typing.Optional[global___OptionalQuantity] = ...,
722
+ z : typing.Optional[global___OptionalQuantity] = ...,
723
+ ) -> None: ...
724
+ def HasField(self, field_name: typing_extensions.Literal["x",b"x","y",b"y","z",b"z"]) -> builtins.bool: ...
725
+ def ClearField(self, field_name: typing_extensions.Literal["x",b"x","y",b"y","z",b"z"]) -> None: ...
726
+ global___VectorOfOptionalQuantities = VectorOfOptionalQuantities
@@ -2,11 +2,9 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # source: ansys/api/discovery/v0/historytrackparameters.proto
4
4
  """Generated protocol buffer code."""
5
- from google.protobuf.internal import enum_type_wrapper
5
+ from google.protobuf.internal import builder as _builder
6
6
  from google.protobuf import descriptor as _descriptor
7
7
  from google.protobuf import descriptor_pool as _descriptor_pool
8
- from google.protobuf import message as _message
9
- from google.protobuf import reflection as _reflection
10
8
  from google.protobuf import symbol_database as _symbol_database
11
9
  # @@protoc_insertion_point(imports)
12
10
 
@@ -20,53 +18,8 @@ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
20
18
 
21
19
  DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3ansys/api/discovery/v0/historytrackparameters.proto\x12-ansys.api.discovery.v0.historytrackparameters\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\x1a\x1bgoogle/protobuf/empty.proto\"a\n\x0eGetAllResponse\x12O\n\x18history_track_parameters\x18\x01 \x03(\x0b\x32-.ansys.api.discovery.v0.HistoryTrackParameter\"_\n\rUpdateRequest\x12N\n\x17history_track_parameter\x18\x01 \x01(\x0b\x32-.ansys.api.discovery.v0.HistoryTrackParameter\" \n\x0eReplayResponse\x12\x0e\n\x06result\x18\x01 \x01(\t\"l\n\x1aGetRecordingStatusResponse\x12N\n\x06status\x18\x01 \x01(\x0e\x32>.ansys.api.discovery.v0.historytrackparameters.RecordingStatus\"k\n\x19SetRecordingStatusRequest\x12N\n\x06status\x18\x01 \x01(\x0e\x32>.ansys.api.discovery.v0.historytrackparameters.RecordingStatus*\"\n\x0fRecordingStatus\x12\x07\n\x03OFF\x10\x00\x12\x06\n\x02ON\x10\x01\x32\x9c\x05\n\x16HistoryTrackParameters\x12X\n\x03Get\x12\".ansys.api.dbu.v0.EntityIdentifier\x1a-.ansys.api.discovery.v0.HistoryTrackParameter\x12_\n\x06GetAll\x12\x16.google.protobuf.Empty\x1a=.ansys.api.discovery.v0.historytrackparameters.GetAllResponse\x12u\n\x06Update\x12<.ansys.api.discovery.v0.historytrackparameters.UpdateRequest\x1a-.ansys.api.discovery.v0.HistoryTrackParameter\x12_\n\x06Replay\x12\x16.google.protobuf.Empty\x1a=.ansys.api.discovery.v0.historytrackparameters.ReplayResponse\x12w\n\x12GetRecordingStatus\x12\x16.google.protobuf.Empty\x1aI.ansys.api.discovery.v0.historytrackparameters.GetRecordingStatusResponse\x12v\n\x12SetRecordingStatus\x12H.ansys.api.discovery.v0.historytrackparameters.SetRecordingStatusRequest\x1a\x16.google.protobuf.EmptyB0\xaa\x02-Ansys.Api.Discovery.V0.HistoryTrackParametersb\x06proto3')
22
20
 
23
- _RECORDINGSTATUS = DESCRIPTOR.enum_types_by_name['RecordingStatus']
24
- RecordingStatus = enum_type_wrapper.EnumTypeWrapper(_RECORDINGSTATUS)
25
- OFF = 0
26
- ON = 1
27
-
28
-
29
- _GETALLRESPONSE = DESCRIPTOR.message_types_by_name['GetAllResponse']
30
- _UPDATEREQUEST = DESCRIPTOR.message_types_by_name['UpdateRequest']
31
- _REPLAYRESPONSE = DESCRIPTOR.message_types_by_name['ReplayResponse']
32
- _GETRECORDINGSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['GetRecordingStatusResponse']
33
- _SETRECORDINGSTATUSREQUEST = DESCRIPTOR.message_types_by_name['SetRecordingStatusRequest']
34
- GetAllResponse = _reflection.GeneratedProtocolMessageType('GetAllResponse', (_message.Message,), {
35
- 'DESCRIPTOR' : _GETALLRESPONSE,
36
- '__module__' : 'ansys.api.discovery.v0.historytrackparameters_pb2'
37
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.historytrackparameters.GetAllResponse)
38
- })
39
- _sym_db.RegisterMessage(GetAllResponse)
40
-
41
- UpdateRequest = _reflection.GeneratedProtocolMessageType('UpdateRequest', (_message.Message,), {
42
- 'DESCRIPTOR' : _UPDATEREQUEST,
43
- '__module__' : 'ansys.api.discovery.v0.historytrackparameters_pb2'
44
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.historytrackparameters.UpdateRequest)
45
- })
46
- _sym_db.RegisterMessage(UpdateRequest)
47
-
48
- ReplayResponse = _reflection.GeneratedProtocolMessageType('ReplayResponse', (_message.Message,), {
49
- 'DESCRIPTOR' : _REPLAYRESPONSE,
50
- '__module__' : 'ansys.api.discovery.v0.historytrackparameters_pb2'
51
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.historytrackparameters.ReplayResponse)
52
- })
53
- _sym_db.RegisterMessage(ReplayResponse)
54
-
55
- GetRecordingStatusResponse = _reflection.GeneratedProtocolMessageType('GetRecordingStatusResponse', (_message.Message,), {
56
- 'DESCRIPTOR' : _GETRECORDINGSTATUSRESPONSE,
57
- '__module__' : 'ansys.api.discovery.v0.historytrackparameters_pb2'
58
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.historytrackparameters.GetRecordingStatusResponse)
59
- })
60
- _sym_db.RegisterMessage(GetRecordingStatusResponse)
61
-
62
- SetRecordingStatusRequest = _reflection.GeneratedProtocolMessageType('SetRecordingStatusRequest', (_message.Message,), {
63
- 'DESCRIPTOR' : _SETRECORDINGSTATUSREQUEST,
64
- '__module__' : 'ansys.api.discovery.v0.historytrackparameters_pb2'
65
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.historytrackparameters.SetRecordingStatusRequest)
66
- })
67
- _sym_db.RegisterMessage(SetRecordingStatusRequest)
68
-
69
- _HISTORYTRACKPARAMETERS = DESCRIPTOR.services_by_name['HistoryTrackParameters']
21
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
22
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.historytrackparameters_pb2', globals())
70
23
  if _descriptor._USE_C_DESCRIPTORS == False:
71
24
 
72
25
  DESCRIPTOR._options = None
@@ -3,8 +3,6 @@ syntax = "proto3";
3
3
 
4
4
  package ansys.api.discovery.v0.messaging;
5
5
 
6
- import "ansys/api/dbu/v0/dbumodels.proto";
7
- import "ansys/api/discovery/v0/discoverymodels.proto";
8
6
  import "google/protobuf/empty.proto";
9
7
 
10
8
  option csharp_namespace = "Ansys.Api.Discovery.V0.Messaging";
@@ -2,40 +2,28 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # source: ansys/api/discovery/v0/messaging.proto
4
4
  """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
5
6
  from google.protobuf import descriptor as _descriptor
6
7
  from google.protobuf import descriptor_pool as _descriptor_pool
7
- from google.protobuf import message as _message
8
- from google.protobuf import reflection as _reflection
9
8
  from google.protobuf import symbol_database as _symbol_database
10
9
  # @@protoc_insertion_point(imports)
11
10
 
12
11
  _sym_db = _symbol_database.Default()
13
12
 
14
13
 
15
- from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_dbumodels__pb2
16
- from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
17
14
  from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
18
15
 
19
16
 
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&ansys/api/discovery/v0/messaging.proto\x12 ansys.api.discovery.v0.messaging\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\x1a\x1bgoogle/protobuf/empty.proto\"*\n\x11MessagingResponse\x12\x15\n\revent_message\x18\x01 \x01(\t2\xaa\x01\n\tMessaging\x12\\\n\x0bGetMessages\x12\x16.google.protobuf.Empty\x1a\x33.ansys.api.discovery.v0.messaging.MessagingResponse0\x01\x12?\n\rClearMessages\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.EmptyB#\xaa\x02 Ansys.Api.Discovery.V0.Messagingb\x06proto3')
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&ansys/api/discovery/v0/messaging.proto\x12 ansys.api.discovery.v0.messaging\x1a\x1bgoogle/protobuf/empty.proto\"*\n\x11MessagingResponse\x12\x15\n\revent_message\x18\x01 \x01(\t2\xaa\x01\n\tMessaging\x12\\\n\x0bGetMessages\x12\x16.google.protobuf.Empty\x1a\x33.ansys.api.discovery.v0.messaging.MessagingResponse0\x01\x12?\n\rClearMessages\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.EmptyB#\xaa\x02 Ansys.Api.Discovery.V0.Messagingb\x06proto3')
21
18
 
22
-
23
-
24
- _MESSAGINGRESPONSE = DESCRIPTOR.message_types_by_name['MessagingResponse']
25
- MessagingResponse = _reflection.GeneratedProtocolMessageType('MessagingResponse', (_message.Message,), {
26
- 'DESCRIPTOR' : _MESSAGINGRESPONSE,
27
- '__module__' : 'ansys.api.discovery.v0.messaging_pb2'
28
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.messaging.MessagingResponse)
29
- })
30
- _sym_db.RegisterMessage(MessagingResponse)
31
-
32
- _MESSAGING = DESCRIPTOR.services_by_name['Messaging']
19
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
20
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.messaging_pb2', globals())
33
21
  if _descriptor._USE_C_DESCRIPTORS == False:
34
22
 
35
23
  DESCRIPTOR._options = None
36
24
  DESCRIPTOR._serialized_options = b'\252\002 Ansys.Api.Discovery.V0.Messaging'
37
- _MESSAGINGRESPONSE._serialized_start=185
38
- _MESSAGINGRESPONSE._serialized_end=227
39
- _MESSAGING._serialized_start=230
40
- _MESSAGING._serialized_end=400
25
+ _MESSAGINGRESPONSE._serialized_start=105
26
+ _MESSAGINGRESPONSE._serialized_end=147
27
+ _MESSAGING._serialized_start=150
28
+ _MESSAGING._serialized_end=320
41
29
  # @@protoc_insertion_point(module_scope)
@@ -2,10 +2,9 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # source: ansys/api/discovery/v0/scriptparameters.proto
4
4
  """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
5
6
  from google.protobuf import descriptor as _descriptor
6
7
  from google.protobuf import descriptor_pool as _descriptor_pool
7
- from google.protobuf import message as _message
8
- from google.protobuf import reflection as _reflection
9
8
  from google.protobuf import symbol_database as _symbol_database
10
9
  # @@protoc_insertion_point(imports)
11
10
 
@@ -19,41 +18,8 @@ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
19
18
 
20
19
  DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n-ansys/api/discovery/v0/scriptparameters.proto\x12\'ansys.api.discovery.v0.scriptparameters\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\x1a\x1bgoogle/protobuf/empty.proto\"\x1f\n\rGetAllRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\"T\n\x0eGetAllResponse\x12\x42\n\x11script_parameters\x18\x01 \x03(\x0b\x32\'.ansys.api.discovery.v0.ScriptParameter\"R\n\rUpdateRequest\x12\x41\n\x10script_parameter\x18\x01 \x01(\x0b\x32\'.ansys.api.discovery.v0.ScriptParameter\" \n\x0eReplayResponse\x12\x0e\n\x06result\x18\x01 \x01(\t2\xa7\x03\n\x10ScriptParameters\x12R\n\x03Get\x12\".ansys.api.dbu.v0.EntityIdentifier\x1a\'.ansys.api.discovery.v0.ScriptParameter\x12y\n\x06GetAll\x12\x36.ansys.api.discovery.v0.scriptparameters.GetAllRequest\x1a\x37.ansys.api.discovery.v0.scriptparameters.GetAllResponse\x12i\n\x06Update\x12\x36.ansys.api.discovery.v0.scriptparameters.UpdateRequest\x1a\'.ansys.api.discovery.v0.ScriptParameter\x12Y\n\x06Replay\x12\x16.google.protobuf.Empty\x1a\x37.ansys.api.discovery.v0.scriptparameters.ReplayResponseB*\xaa\x02\'Ansys.Api.Discovery.V0.ScriptParametersb\x06proto3')
21
20
 
22
-
23
-
24
- _GETALLREQUEST = DESCRIPTOR.message_types_by_name['GetAllRequest']
25
- _GETALLRESPONSE = DESCRIPTOR.message_types_by_name['GetAllResponse']
26
- _UPDATEREQUEST = DESCRIPTOR.message_types_by_name['UpdateRequest']
27
- _REPLAYRESPONSE = DESCRIPTOR.message_types_by_name['ReplayResponse']
28
- GetAllRequest = _reflection.GeneratedProtocolMessageType('GetAllRequest', (_message.Message,), {
29
- 'DESCRIPTOR' : _GETALLREQUEST,
30
- '__module__' : 'ansys.api.discovery.v0.scriptparameters_pb2'
31
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.scriptparameters.GetAllRequest)
32
- })
33
- _sym_db.RegisterMessage(GetAllRequest)
34
-
35
- GetAllResponse = _reflection.GeneratedProtocolMessageType('GetAllResponse', (_message.Message,), {
36
- 'DESCRIPTOR' : _GETALLRESPONSE,
37
- '__module__' : 'ansys.api.discovery.v0.scriptparameters_pb2'
38
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.scriptparameters.GetAllResponse)
39
- })
40
- _sym_db.RegisterMessage(GetAllResponse)
41
-
42
- UpdateRequest = _reflection.GeneratedProtocolMessageType('UpdateRequest', (_message.Message,), {
43
- 'DESCRIPTOR' : _UPDATEREQUEST,
44
- '__module__' : 'ansys.api.discovery.v0.scriptparameters_pb2'
45
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.scriptparameters.UpdateRequest)
46
- })
47
- _sym_db.RegisterMessage(UpdateRequest)
48
-
49
- ReplayResponse = _reflection.GeneratedProtocolMessageType('ReplayResponse', (_message.Message,), {
50
- 'DESCRIPTOR' : _REPLAYRESPONSE,
51
- '__module__' : 'ansys.api.discovery.v0.scriptparameters_pb2'
52
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.scriptparameters.ReplayResponse)
53
- })
54
- _sym_db.RegisterMessage(ReplayResponse)
55
-
56
- _SCRIPTPARAMETERS = DESCRIPTOR.services_by_name['ScriptParameters']
21
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
22
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.scriptparameters_pb2', globals())
57
23
  if _descriptor._USE_C_DESCRIPTORS == False:
58
24
 
59
25
  DESCRIPTOR._options = None
@@ -2,7 +2,6 @@
2
2
  syntax = "proto3";
3
3
  package ansys.api.discovery.v0.simulations;
4
4
 
5
- import "ansys/api/dbu/v0/dbumodels.proto";
6
5
  import "ansys/api/discovery/v0/discoverymodels.proto";
7
6
  import "google/protobuf/empty.proto";
8
7
 
@@ -2,40 +2,29 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # source: ansys/api/discovery/v0/simulations.proto
4
4
  """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
5
6
  from google.protobuf import descriptor as _descriptor
6
7
  from google.protobuf import descriptor_pool as _descriptor_pool
7
- from google.protobuf import message as _message
8
- from google.protobuf import reflection as _reflection
9
8
  from google.protobuf import symbol_database as _symbol_database
10
9
  # @@protoc_insertion_point(imports)
11
10
 
12
11
  _sym_db = _symbol_database.Default()
13
12
 
14
13
 
15
- from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_dbumodels__pb2
16
14
  from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
17
15
  from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
18
16
 
19
17
 
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(ansys/api/discovery/v0/simulations.proto\x12\"ansys.api.discovery.v0.simulations\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\x1a\x1bgoogle/protobuf/empty.proto\"I\n\x0eGetAllResponse\x12\x37\n\x0bsimulations\x18\x01 \x03(\x0b\x32\".ansys.api.discovery.v0.Simulation2\xb3\x01\n\x0bSimulations\x12N\n\x10\x43reateSimulation\x12\x16.google.protobuf.Empty\x1a\".ansys.api.discovery.v0.Simulation\x12T\n\x06GetAll\x12\x16.google.protobuf.Empty\x1a\x32.ansys.api.discovery.v0.simulations.GetAllResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Simulationsb\x06proto3')
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(ansys/api/discovery/v0/simulations.proto\x12\"ansys.api.discovery.v0.simulations\x1a,ansys/api/discovery/v0/discoverymodels.proto\x1a\x1bgoogle/protobuf/empty.proto\"I\n\x0eGetAllResponse\x12\x37\n\x0bsimulations\x18\x01 \x03(\x0b\x32\".ansys.api.discovery.v0.Simulation2\xb3\x01\n\x0bSimulations\x12N\n\x10\x43reateSimulation\x12\x16.google.protobuf.Empty\x1a\".ansys.api.discovery.v0.Simulation\x12T\n\x06GetAll\x12\x16.google.protobuf.Empty\x1a\x32.ansys.api.discovery.v0.simulations.GetAllResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Simulationsb\x06proto3')
21
19
 
22
-
23
-
24
- _GETALLRESPONSE = DESCRIPTOR.message_types_by_name['GetAllResponse']
25
- GetAllResponse = _reflection.GeneratedProtocolMessageType('GetAllResponse', (_message.Message,), {
26
- 'DESCRIPTOR' : _GETALLRESPONSE,
27
- '__module__' : 'ansys.api.discovery.v0.simulations_pb2'
28
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.simulations.GetAllResponse)
29
- })
30
- _sym_db.RegisterMessage(GetAllResponse)
31
-
32
- _SIMULATIONS = DESCRIPTOR.services_by_name['Simulations']
20
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
21
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.simulations_pb2', globals())
33
22
  if _descriptor._USE_C_DESCRIPTORS == False:
34
23
 
35
24
  DESCRIPTOR._options = None
36
25
  DESCRIPTOR._serialized_options = b'\252\002\"Ansys.Api.Discovery.V0.Simulations'
37
- _GETALLRESPONSE._serialized_start=189
38
- _GETALLRESPONSE._serialized_end=262
39
- _SIMULATIONS._serialized_start=265
40
- _SIMULATIONS._serialized_end=444
26
+ _GETALLRESPONSE._serialized_start=155
27
+ _GETALLRESPONSE._serialized_end=228
28
+ _SIMULATIONS._serialized_start=231
29
+ _SIMULATIONS._serialized_end=410
41
30
  # @@protoc_insertion_point(module_scope)