luminarycloud 0.20.0__py3-none-any.whl → 0.22.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.
- luminarycloud/__init__.py +5 -1
- luminarycloud/_client/client.py +5 -0
- luminarycloud/_client/http_client.py +10 -8
- luminarycloud/_feature_flag.py +22 -0
- luminarycloud/_helpers/_create_simulation.py +7 -2
- luminarycloud/_helpers/_upload_mesh.py +1 -0
- luminarycloud/_helpers/download.py +3 -1
- luminarycloud/_helpers/pagination.py +62 -0
- luminarycloud/_helpers/proto_decorator.py +13 -5
- luminarycloud/_helpers/upload.py +18 -12
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.py +55 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.pyi +52 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.py +72 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.pyi +35 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +168 -124
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +133 -4
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +66 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +20 -0
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +5 -5
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +74 -73
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +17 -3
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +33 -20
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +21 -1
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +16 -16
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +7 -3
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +97 -61
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +72 -3
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +33 -31
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +23 -2
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +68 -19
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +98 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py +33 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/assistant/assistant_pb2.py +74 -41
- luminarycloud/_proto/assistant/assistant_pb2.pyi +64 -2
- luminarycloud/_proto/assistant/assistant_pb2_grpc.py +33 -0
- luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/base/base_pb2.py +20 -7
- luminarycloud/_proto/base/base_pb2.pyi +38 -0
- luminarycloud/_proto/cad/shape_pb2.py +39 -19
- luminarycloud/_proto/cad/shape_pb2.pyi +86 -34
- luminarycloud/_proto/cad/transformation_pb2.py +60 -16
- luminarycloud/_proto/cad/transformation_pb2.pyi +138 -32
- luminarycloud/_proto/client/simulation_pb2.py +490 -348
- luminarycloud/_proto/client/simulation_pb2.pyi +570 -8
- luminarycloud/_proto/geometry/geometry_pb2.py +77 -63
- luminarycloud/_proto/geometry/geometry_pb2.pyi +42 -3
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +24 -18
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +23 -2
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +5 -5
- luminarycloud/_proto/quantity/quantity_options_pb2.py +6 -6
- luminarycloud/_proto/quantity/quantity_options_pb2.pyi +10 -1
- luminarycloud/_proto/quantity/quantity_pb2.py +176 -167
- luminarycloud/_proto/quantity/quantity_pb2.pyi +11 -5
- luminarycloud/enum/__init__.py +1 -0
- luminarycloud/enum/gpu_type.py +2 -0
- luminarycloud/enum/quantity_type.py +9 -0
- luminarycloud/enum/vis_enums.py +23 -3
- luminarycloud/feature_modification.py +45 -35
- luminarycloud/geometry.py +104 -8
- luminarycloud/geometry_version.py +57 -3
- luminarycloud/meshing/mesh_generation_params.py +8 -8
- luminarycloud/params/enum/_enum_wrappers.py +537 -30
- luminarycloud/params/simulation/adaptive_mesh_refinement_.py +4 -0
- luminarycloud/params/simulation/physics/__init__.py +0 -1
- luminarycloud/params/simulation/physics/periodic_pair_.py +12 -31
- luminarycloud/physics_ai/architectures.py +5 -5
- luminarycloud/physics_ai/inference.py +13 -13
- luminarycloud/physics_ai/solution.py +3 -1
- luminarycloud/pipelines/__init__.py +11 -3
- luminarycloud/pipelines/api.py +240 -4
- luminarycloud/pipelines/arguments.py +15 -0
- luminarycloud/pipelines/core.py +113 -96
- luminarycloud/pipelines/{operators.py → stages.py} +96 -39
- luminarycloud/project.py +15 -47
- luminarycloud/simulation.py +66 -3
- luminarycloud/simulation_param.py +0 -9
- luminarycloud/types/matrix3.py +12 -0
- luminarycloud/vis/__init__.py +2 -0
- luminarycloud/vis/interactive_report.py +79 -93
- luminarycloud/vis/report.py +219 -65
- luminarycloud/vis/visualization.py +60 -0
- luminarycloud/volume_selection.py +132 -69
- {luminarycloud-0.20.0.dist-info → luminarycloud-0.22.0.dist-info}/METADATA +1 -1
- {luminarycloud-0.20.0.dist-info → luminarycloud-0.22.0.dist-info}/RECORD +90 -89
- luminarycloud/params/simulation/physics/periodic_pair/__init__.py +0 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/__init__.py +0 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +0 -31
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/translational_periodicity_.py +0 -29
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type_.py +0 -25
- {luminarycloud-0.20.0.dist-info → luminarycloud-0.22.0.dist-info}/WHEEL +0 -0
|
@@ -20,7 +20,7 @@ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
|
|
|
20
20
|
from luminarycloud._proto.quantity import quantity_pb2 as proto_dot_quantity_dot_quantity__pb2
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/physics_ai/physics_ai.proto\x12.luminary.proto.api.v0.luminarycloud.physics_ai\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\"\xad\x01\n\x1cPhysicsAiArchitectureVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x11\n\tchangelog\x18\x03 \x01(\t\x12`\n\x0flifecycle_state\x18\x04 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\xa6\x01\n\x15PhysicsAiArchitecture\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12^\n\x08versions\x18\x04 \x03(\x0b\x32L.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitectureVersion\"\x1a\n\x18ListArchitecturesRequest\"y\n\x19ListArchitecturesResponse\x12\\\n\rarchitectures\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitecture\"\x93\x01\n\x15PhysicsAiModelVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x0flifecycle_state\x18\x03 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\x98\x01\n\x0ePhysicsAiModel\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12W\n\x08versions\x18\x04 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModelVersion\"\x1d\n\x1bListPretrainedModelsRequest\"n\n\x1cListPretrainedModelsResponse\x12N\n\x06models\x18\x01 \x03(\x0b\x32>.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModel\"\
|
|
23
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/physics_ai/physics_ai.proto\x12.luminary.proto.api.v0.luminarycloud.physics_ai\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\"\xad\x01\n\x1cPhysicsAiArchitectureVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x11\n\tchangelog\x18\x03 \x01(\t\x12`\n\x0flifecycle_state\x18\x04 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\xa6\x01\n\x15PhysicsAiArchitecture\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12^\n\x08versions\x18\x04 \x03(\x0b\x32L.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitectureVersion\"\x1a\n\x18ListArchitecturesRequest\"y\n\x19ListArchitecturesResponse\x12\\\n\rarchitectures\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitecture\"\x93\x01\n\x15PhysicsAiModelVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x0flifecycle_state\x18\x03 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\x98\x01\n\x0ePhysicsAiModel\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12W\n\x08versions\x18\x04 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModelVersion\"\x1d\n\x1bListPretrainedModelsRequest\"n\n\x1cListPretrainedModelsResponse\x12N\n\x06models\x18\x01 \x03(\x0b\x32>.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModel\"\xdb\x03\n\x1fGetSolutionDataPhysicsAIRequest\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x18\n\x10\x65xclude_surfaces\x18\x02 \x03(\t\x12\x12\n\nfill_holes\x18\x03 \x01(\x02\x12\x45\n\x16surface_fields_to_keep\x18\x04 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x44\n\x15volume_fields_to_keep\x18\x05 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x16\n\x0eprocess_volume\x18\x06 \x01(\x08\x12\x18\n\x10single_precision\x18\x07 \x01(\x08\x12~\n\x10internal_options\x18\x08 \x03(\x0b\x32\x64.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest.InternalOptionsEntry\x1a\x36\n\x14InternalOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"b\n GetSolutionDataPhysicsAIResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\";\n\x10TrainingSolution\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x12\n\ndata_split\x18\x02 \x01(\t\"\x9a\x05\n\x14PhysicsAiTrainingJob\x12\n\n\x02id\x18\x01 \x01(\t\x12\x1f\n\x17\x61rchitecture_version_id\x18\x02 \x01(\t\x12\x0f\n\x07user_id\x18\x03 \x01(\t\x12\x17\n\x0ftraining_config\x18\x04 \x01(\t\x12i\n\x19training_data_source_type\x18\x05 \x01(\x0e\x32\x46.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingDataSourceType\x12\x1c\n\x14training_description\x18\x06 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x07 \x01(\t\x12\x64\n\x13initialization_type\x18\x08 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\t \x01(\t\x12.\n\x06status\x18\n \x01(\x0b\x32\x1e.luminary.proto.base.JobStatus\x12\x15\n\rerror_message\x18\x0b \x01(\t\x12\x1f\n\x17output_model_version_id\x18\x0c \x01(\t\x12\x31\n\rcreation_time\x18\r \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0f\x63ompletion_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xf3\x02\n\x18SubmitTrainingJobRequest\x12\x1f\n\x17\x61rchitecture_version_id\x18\x01 \x01(\t\x12\x1c\n\x14training_description\x18\x02 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x03 \x01(\t\x12\\\n\x12training_solutions\x18\x04 \x03(\x0b\x32@.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingSolution\x12\x17\n\x0ftraining_config\x18\x05 \x01(\t\x12\x64\n\x13initialization_type\x18\x06 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\x07 \x01(\t\"w\n\x19SubmitTrainingJobResponse\x12Z\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\x44.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiTrainingJob*\xb4\x01\n\x17PhysicsAiLifecycleState\x12\x1f\n\x1bLIFECYCLE_STATE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bLIFECYCLE_STATE_DEVELOPMENT\x10\x01\x12\x1a\n\x16LIFECYCLE_STATE_ACTIVE\x10\x02\x12\x1e\n\x1aLIFECYCLE_STATE_DEPRECATED\x10\x03\x12\x1b\n\x17LIFECYCLE_STATE_RETIRED\x10\x04*\xa7\x01\n\x16TrainingDataSourceType\x12)\n%TRAINING_DATA_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x32\n.TRAINING_DATA_SOURCE_TYPE_SIMULATION_SOLUTIONS\x10\x01\x12.\n*TRAINING_DATA_SOURCE_TYPE_EXTERNAL_DATASET\x10\x02*\xc1\x01\n\x17ModelInitializationType\x12)\n%MODEL_INITIALIZATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODEL_INITIALIZATION_TYPE_RANDOM\x10\x01\x12+\n\'MODEL_INITIALIZATION_TYPE_MODEL_VERSION\x10\x02\x12(\n$MODEL_INITIALIZATION_TYPE_CHECKPOINT\x10\x03\x32\x8d\x07\n\x10PhysicsAiService\x12\xce\x01\n\x11ListArchitectures\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/v0/physics_ai/architectures\x12\xdb\x01\n\x14ListPretrainedModels\x12K.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsRequest\x1aL.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/physics_ai/pretrained_models\x12\xf5\x01\n\x18GetSolutionDataPhysicsAI\x12O.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest\x1aP.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIResponse\"6\x82\xd3\xe4\x93\x02\x30\"+/v0/physics_ai/solutions/{solution_id}/data:\x01*\x12\xd1\x01\n\x11SubmitTrainingJob\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobResponse\"\'\x82\xd3\xe4\x93\x02!\"\x1c/v0/physics_ai/training/jobs:\x01*B>Z<luminarycloud.com/core/proto/api/v0/luminarycloud/physics_aib\x06proto3')
|
|
24
24
|
|
|
25
25
|
_PHYSICSAILIFECYCLESTATE = DESCRIPTOR.enum_types_by_name['PhysicsAiLifecycleState']
|
|
26
26
|
PhysicsAiLifecycleState = enum_type_wrapper.EnumTypeWrapper(_PHYSICSAILIFECYCLESTATE)
|
|
@@ -51,6 +51,7 @@ _PHYSICSAIMODEL = DESCRIPTOR.message_types_by_name['PhysicsAiModel']
|
|
|
51
51
|
_LISTPRETRAINEDMODELSREQUEST = DESCRIPTOR.message_types_by_name['ListPretrainedModelsRequest']
|
|
52
52
|
_LISTPRETRAINEDMODELSRESPONSE = DESCRIPTOR.message_types_by_name['ListPretrainedModelsResponse']
|
|
53
53
|
_GETSOLUTIONDATAPHYSICSAIREQUEST = DESCRIPTOR.message_types_by_name['GetSolutionDataPhysicsAIRequest']
|
|
54
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY = _GETSOLUTIONDATAPHYSICSAIREQUEST.nested_types_by_name['InternalOptionsEntry']
|
|
54
55
|
_GETSOLUTIONDATAPHYSICSAIRESPONSE = DESCRIPTOR.message_types_by_name['GetSolutionDataPhysicsAIResponse']
|
|
55
56
|
_TRAININGSOLUTION = DESCRIPTOR.message_types_by_name['TrainingSolution']
|
|
56
57
|
_PHYSICSAITRAININGJOB = DESCRIPTOR.message_types_by_name['PhysicsAiTrainingJob']
|
|
@@ -113,11 +114,19 @@ ListPretrainedModelsResponse = _reflection.GeneratedProtocolMessageType('ListPre
|
|
|
113
114
|
_sym_db.RegisterMessage(ListPretrainedModelsResponse)
|
|
114
115
|
|
|
115
116
|
GetSolutionDataPhysicsAIRequest = _reflection.GeneratedProtocolMessageType('GetSolutionDataPhysicsAIRequest', (_message.Message,), {
|
|
117
|
+
|
|
118
|
+
'InternalOptionsEntry' : _reflection.GeneratedProtocolMessageType('InternalOptionsEntry', (_message.Message,), {
|
|
119
|
+
'DESCRIPTOR' : _GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY,
|
|
120
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
121
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest.InternalOptionsEntry)
|
|
122
|
+
})
|
|
123
|
+
,
|
|
116
124
|
'DESCRIPTOR' : _GETSOLUTIONDATAPHYSICSAIREQUEST,
|
|
117
125
|
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
118
126
|
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest)
|
|
119
127
|
})
|
|
120
128
|
_sym_db.RegisterMessage(GetSolutionDataPhysicsAIRequest)
|
|
129
|
+
_sym_db.RegisterMessage(GetSolutionDataPhysicsAIRequest.InternalOptionsEntry)
|
|
121
130
|
|
|
122
131
|
GetSolutionDataPhysicsAIResponse = _reflection.GeneratedProtocolMessageType('GetSolutionDataPhysicsAIResponse', (_message.Message,), {
|
|
123
132
|
'DESCRIPTOR' : _GETSOLUTIONDATAPHYSICSAIRESPONSE,
|
|
@@ -159,6 +168,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
159
168
|
|
|
160
169
|
DESCRIPTOR._options = None
|
|
161
170
|
DESCRIPTOR._serialized_options = b'Z<luminarycloud.com/core/proto/api/v0/luminarycloud/physics_ai'
|
|
171
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._options = None
|
|
172
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_options = b'8\001'
|
|
162
173
|
_PHYSICSAISERVICE.methods_by_name['ListArchitectures']._options = None
|
|
163
174
|
_PHYSICSAISERVICE.methods_by_name['ListArchitectures']._serialized_options = b'\202\323\344\223\002\036\022\034/v0/physics_ai/architectures'
|
|
164
175
|
_PHYSICSAISERVICE.methods_by_name['ListPretrainedModels']._options = None
|
|
@@ -167,12 +178,12 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
167
178
|
_PHYSICSAISERVICE.methods_by_name['GetSolutionDataPhysicsAI']._serialized_options = b'\202\323\344\223\0020\"+/v0/physics_ai/solutions/{solution_id}/data:\001*'
|
|
168
179
|
_PHYSICSAISERVICE.methods_by_name['SubmitTrainingJob']._options = None
|
|
169
180
|
_PHYSICSAISERVICE.methods_by_name['SubmitTrainingJob']._serialized_options = b'\202\323\344\223\002!\"\034/v0/physics_ai/training/jobs:\001*'
|
|
170
|
-
_PHYSICSAILIFECYCLESTATE._serialized_start=
|
|
171
|
-
_PHYSICSAILIFECYCLESTATE._serialized_end=
|
|
172
|
-
_TRAININGDATASOURCETYPE._serialized_start=
|
|
173
|
-
_TRAININGDATASOURCETYPE._serialized_end=
|
|
174
|
-
_MODELINITIALIZATIONTYPE._serialized_start=
|
|
175
|
-
_MODELINITIALIZATIONTYPE._serialized_end=
|
|
181
|
+
_PHYSICSAILIFECYCLESTATE._serialized_start=3019
|
|
182
|
+
_PHYSICSAILIFECYCLESTATE._serialized_end=3199
|
|
183
|
+
_TRAININGDATASOURCETYPE._serialized_start=3202
|
|
184
|
+
_TRAININGDATASOURCETYPE._serialized_end=3369
|
|
185
|
+
_MODELINITIALIZATIONTYPE._serialized_start=3372
|
|
186
|
+
_MODELINITIALIZATIONTYPE._serialized_end=3565
|
|
176
187
|
_PHYSICSAIARCHITECTUREVERSION._serialized_start=272
|
|
177
188
|
_PHYSICSAIARCHITECTUREVERSION._serialized_end=445
|
|
178
189
|
_PHYSICSAIARCHITECTURE._serialized_start=448
|
|
@@ -190,17 +201,19 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
190
201
|
_LISTPRETRAINEDMODELSRESPONSE._serialized_start=1103
|
|
191
202
|
_LISTPRETRAINEDMODELSRESPONSE._serialized_end=1213
|
|
192
203
|
_GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_start=1216
|
|
193
|
-
_GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_end=
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
204
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_end=1691
|
|
205
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_start=1637
|
|
206
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_end=1691
|
|
207
|
+
_GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_start=1693
|
|
208
|
+
_GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_end=1791
|
|
209
|
+
_TRAININGSOLUTION._serialized_start=1793
|
|
210
|
+
_TRAININGSOLUTION._serialized_end=1852
|
|
211
|
+
_PHYSICSAITRAININGJOB._serialized_start=1855
|
|
212
|
+
_PHYSICSAITRAININGJOB._serialized_end=2521
|
|
213
|
+
_SUBMITTRAININGJOBREQUEST._serialized_start=2524
|
|
214
|
+
_SUBMITTRAININGJOBREQUEST._serialized_end=2895
|
|
215
|
+
_SUBMITTRAININGJOBRESPONSE._serialized_start=2897
|
|
216
|
+
_SUBMITTRAININGJOBRESPONSE._serialized_end=3016
|
|
217
|
+
_PHYSICSAISERVICE._serialized_start=3568
|
|
218
|
+
_PHYSICSAISERVICE._serialized_end=4477
|
|
206
219
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -287,6 +287,21 @@ class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
|
|
|
287
287
|
|
|
288
288
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
289
289
|
|
|
290
|
+
class InternalOptionsEntry(google.protobuf.message.Message):
|
|
291
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
292
|
+
|
|
293
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
294
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
295
|
+
key: builtins.str
|
|
296
|
+
value: builtins.str
|
|
297
|
+
def __init__(
|
|
298
|
+
self,
|
|
299
|
+
*,
|
|
300
|
+
key: builtins.str = ...,
|
|
301
|
+
value: builtins.str = ...,
|
|
302
|
+
) -> None: ...
|
|
303
|
+
def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
304
|
+
|
|
290
305
|
SOLUTION_ID_FIELD_NUMBER: builtins.int
|
|
291
306
|
EXCLUDE_SURFACES_FIELD_NUMBER: builtins.int
|
|
292
307
|
FILL_HOLES_FIELD_NUMBER: builtins.int
|
|
@@ -294,6 +309,7 @@ class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
|
|
|
294
309
|
VOLUME_FIELDS_TO_KEEP_FIELD_NUMBER: builtins.int
|
|
295
310
|
PROCESS_VOLUME_FIELD_NUMBER: builtins.int
|
|
296
311
|
SINGLE_PRECISION_FIELD_NUMBER: builtins.int
|
|
312
|
+
INTERNAL_OPTIONS_FIELD_NUMBER: builtins.int
|
|
297
313
|
solution_id: builtins.str
|
|
298
314
|
"""Required. The globally unique identifier for the solution."""
|
|
299
315
|
@property
|
|
@@ -311,6 +327,9 @@ class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
|
|
|
311
327
|
"""Whether to process volume meshes during physics AI processing"""
|
|
312
328
|
single_precision: builtins.bool
|
|
313
329
|
"""Whether to export the floating point fields in single precision"""
|
|
330
|
+
@property
|
|
331
|
+
def internal_options(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
332
|
+
"""Internal options for physics AI processing only available for staff users."""
|
|
314
333
|
def __init__(
|
|
315
334
|
self,
|
|
316
335
|
*,
|
|
@@ -321,8 +340,9 @@ class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
|
|
|
321
340
|
volume_fields_to_keep: collections.abc.Iterable[luminarycloud._proto.quantity.quantity_pb2.QuantityType.ValueType] | None = ...,
|
|
322
341
|
process_volume: builtins.bool = ...,
|
|
323
342
|
single_precision: builtins.bool = ...,
|
|
343
|
+
internal_options: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
|
324
344
|
) -> None: ...
|
|
325
|
-
def ClearField(self, field_name: typing_extensions.Literal["exclude_surfaces", b"exclude_surfaces", "fill_holes", b"fill_holes", "process_volume", b"process_volume", "single_precision", b"single_precision", "solution_id", b"solution_id", "surface_fields_to_keep", b"surface_fields_to_keep", "volume_fields_to_keep", b"volume_fields_to_keep"]) -> None: ...
|
|
345
|
+
def ClearField(self, field_name: typing_extensions.Literal["exclude_surfaces", b"exclude_surfaces", "fill_holes", b"fill_holes", "internal_options", b"internal_options", "process_volume", b"process_volume", "single_precision", b"single_precision", "solution_id", b"solution_id", "surface_fields_to_keep", b"surface_fields_to_keep", "volume_fields_to_keep", b"volume_fields_to_keep"]) -> None: ...
|
|
326
346
|
|
|
327
347
|
global___GetSolutionDataPhysicsAIRequest = GetSolutionDataPhysicsAIRequest
|
|
328
348
|
|
|
@@ -17,7 +17,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
|
|
|
17
17
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0proto/api/v0/luminarycloud/project/project.proto\x12+luminary.proto.api.v0.luminarycloud.project\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/api/annotations.proto\"\xdc\x01\n\x07Project\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12/\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06meshes\x18\x06 \x03(\t\x12\x13\n\x0bsimulations\x18\x07 \x03(\t\x12\x1b\n\x13storage_usage_bytes\x18\x08 \x01(\x04\"9\n\x14\x43reateProjectRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\"^\n\x15\x43reateProjectResponse\x12\x45\n\x07project\x18\x01 \x01(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\"\x1f\n\x11GetProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\"[\n\x12GetProjectResponse\x12\x45\n\x07project\x18\x01 \x01(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\"c\n\x13ListProjectsRequest\x12\x16\n\tpage_size\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\npage_token\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x0c\n\n_page_sizeB\r\n\x0b_page_token\"\x8c\x01\n\x14ListProjectsResponse\x12\x46\n\x08projects\x18\x01 \x03(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0btotal_count\x18\x03 \x01(\x05\"E\n\x14UpdateProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\"^\n\x15UpdateProjectResponse\x12\x45\n\x07project\x18\x01 \x01(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\"\"\n\x14\x44\x65leteProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\"
|
|
20
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0proto/api/v0/luminarycloud/project/project.proto\x12+luminary.proto.api.v0.luminarycloud.project\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/api/annotations.proto\"\xdc\x01\n\x07Project\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12/\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06meshes\x18\x06 \x03(\t\x12\x13\n\x0bsimulations\x18\x07 \x03(\t\x12\x1b\n\x13storage_usage_bytes\x18\x08 \x01(\x04\"9\n\x14\x43reateProjectRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\"^\n\x15\x43reateProjectResponse\x12\x45\n\x07project\x18\x01 \x01(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\"\x1f\n\x11GetProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\"[\n\x12GetProjectResponse\x12\x45\n\x07project\x18\x01 \x01(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\"c\n\x13ListProjectsRequest\x12\x16\n\tpage_size\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\npage_token\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x0c\n\n_page_sizeB\r\n\x0b_page_token\"\x8c\x01\n\x14ListProjectsResponse\x12\x46\n\x08projects\x18\x01 \x03(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0btotal_count\x18\x03 \x01(\x05\"E\n\x14UpdateProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\"^\n\x15UpdateProjectResponse\x12\x45\n\x07project\x18\x01 \x01(\x0b\x32\x34.luminary.proto.api.v0.luminarycloud.project.Project\"\"\n\x14\x44\x65leteProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\"Z\n\x1aLoadGeometryToSetupRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x03 \x01(\t\"\x1d\n\x1bLoadGeometryToSetupResponse\"\xdc\x01\n\x13ShareProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\r\n\x05\x65mail\x18\x02 \x01(\t\x12W\n\x04role\x18\x03 \x01(\x0e\x32I.luminary.proto.api.v0.luminarycloud.project.ShareProjectRequest.UserRole\"Q\n\x08UserRole\x12\x19\n\x15USER_ROLE_UNSPECIFIED\x10\x00\x12\x14\n\x10USER_ROLE_VIEWER\x10\x01\x12\x14\n\x10USER_ROLE_EDITOR\x10\x02\"=\n\x1eShareProjectWithSupportRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\"2\n\x15UnshareProjectRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\r\n\x05\x65mail\x18\x02 \x01(\t\".\n UnshareProjectWithSupportRequest\x12\n\n\x02id\x18\x01 \x01(\t2\xbd\r\n\x0eProjectService\x12\xaf\x01\n\rCreateProject\x12\x41.luminary.proto.api.v0.luminarycloud.project.CreateProjectRequest\x1a\x42.luminary.proto.api.v0.luminarycloud.project.CreateProjectResponse\"\x17\x82\xd3\xe4\x93\x02\x11\"\x0c/v0/projects:\x01*\x12\xa8\x01\n\nGetProject\x12>.luminary.proto.api.v0.luminarycloud.project.GetProjectRequest\x1a?.luminary.proto.api.v0.luminarycloud.project.GetProjectResponse\"\x19\x82\xd3\xe4\x93\x02\x13\x12\x11/v0/projects/{id}\x12\xa9\x01\n\x0cListProjects\x12@.luminary.proto.api.v0.luminarycloud.project.ListProjectsRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.project.ListProjectsResponse\"\x14\x82\xd3\xe4\x93\x02\x0e\x12\x0c/v0/projects\x12\xb4\x01\n\rUpdateProject\x12\x41.luminary.proto.api.v0.luminarycloud.project.UpdateProjectRequest\x1a\x42.luminary.proto.api.v0.luminarycloud.project.UpdateProjectResponse\"\x1c\x82\xd3\xe4\x93\x02\x16\x32\x11/v0/projects/{id}:\x01*\x12\x85\x01\n\rDeleteProject\x12\x41.luminary.proto.api.v0.luminarycloud.project.DeleteProjectRequest\x1a\x16.google.protobuf.Empty\"\x19\x82\xd3\xe4\x93\x02\x13*\x11/v0/projects/{id}\x12\xd4\x01\n\x13LoadGeometryToSetup\x12G.luminary.proto.api.v0.luminarycloud.project.LoadGeometryToSetupRequest\x1aH.luminary.proto.api.v0.luminarycloud.project.LoadGeometryToSetupResponse\"*\x82\xd3\xe4\x93\x02$\"\x1f/v0/projects/{id}/load-geometry:\x01*\x12\x8c\x01\n\x0cShareProject\x12@.luminary.proto.api.v0.luminarycloud.project.ShareProjectRequest\x1a\x16.google.protobuf.Empty\"\"\x82\xd3\xe4\x93\x02\x1c\"\x17/v0/projects/{id}/share:\x01*\x12\xaf\x01\n\x17ShareProjectWithSupport\x12K.luminary.proto.api.v0.luminarycloud.project.ShareProjectWithSupportRequest\x1a\x16.google.protobuf.Empty\"/\x82\xd3\xe4\x93\x02)\"$/v0/projects/{id}/share-with-support:\x01*\x12\x92\x01\n\x0eUnshareProject\x12\x42.luminary.proto.api.v0.luminarycloud.project.UnshareProjectRequest\x1a\x16.google.protobuf.Empty\"$\x82\xd3\xe4\x93\x02\x1e\"\x19/v0/projects/{id}/unshare:\x01*\x12\xb5\x01\n\x19UnshareProjectWithSupport\x12M.luminary.proto.api.v0.luminarycloud.project.UnshareProjectWithSupportRequest\x1a\x16.google.protobuf.Empty\"1\x82\xd3\xe4\x93\x02+\"&/v0/projects/{id}/unshare-with-support:\x01*B;Z9luminarycloud.com/core/proto/api/v0/luminarycloud/projectb\x06proto3')
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -196,19 +196,19 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
196
196
|
_DELETEPROJECTREQUEST._serialized_start=1104
|
|
197
197
|
_DELETEPROJECTREQUEST._serialized_end=1138
|
|
198
198
|
_LOADGEOMETRYTOSETUPREQUEST._serialized_start=1140
|
|
199
|
-
_LOADGEOMETRYTOSETUPREQUEST._serialized_end=
|
|
200
|
-
_LOADGEOMETRYTOSETUPRESPONSE._serialized_start=
|
|
201
|
-
_LOADGEOMETRYTOSETUPRESPONSE._serialized_end=
|
|
202
|
-
_SHAREPROJECTREQUEST._serialized_start=
|
|
203
|
-
_SHAREPROJECTREQUEST._serialized_end=
|
|
204
|
-
_SHAREPROJECTREQUEST_USERROLE._serialized_start=
|
|
205
|
-
_SHAREPROJECTREQUEST_USERROLE._serialized_end=
|
|
206
|
-
_SHAREPROJECTWITHSUPPORTREQUEST._serialized_start=
|
|
207
|
-
_SHAREPROJECTWITHSUPPORTREQUEST._serialized_end=
|
|
208
|
-
_UNSHAREPROJECTREQUEST._serialized_start=
|
|
209
|
-
_UNSHAREPROJECTREQUEST._serialized_end=
|
|
210
|
-
_UNSHAREPROJECTWITHSUPPORTREQUEST._serialized_start=
|
|
211
|
-
_UNSHAREPROJECTWITHSUPPORTREQUEST._serialized_end=
|
|
212
|
-
_PROJECTSERVICE._serialized_start=
|
|
213
|
-
_PROJECTSERVICE._serialized_end=
|
|
199
|
+
_LOADGEOMETRYTOSETUPREQUEST._serialized_end=1230
|
|
200
|
+
_LOADGEOMETRYTOSETUPRESPONSE._serialized_start=1232
|
|
201
|
+
_LOADGEOMETRYTOSETUPRESPONSE._serialized_end=1261
|
|
202
|
+
_SHAREPROJECTREQUEST._serialized_start=1264
|
|
203
|
+
_SHAREPROJECTREQUEST._serialized_end=1484
|
|
204
|
+
_SHAREPROJECTREQUEST_USERROLE._serialized_start=1403
|
|
205
|
+
_SHAREPROJECTREQUEST_USERROLE._serialized_end=1484
|
|
206
|
+
_SHAREPROJECTWITHSUPPORTREQUEST._serialized_start=1486
|
|
207
|
+
_SHAREPROJECTWITHSUPPORTREQUEST._serialized_end=1547
|
|
208
|
+
_UNSHAREPROJECTREQUEST._serialized_start=1549
|
|
209
|
+
_UNSHAREPROJECTREQUEST._serialized_end=1599
|
|
210
|
+
_UNSHAREPROJECTWITHSUPPORTREQUEST._serialized_start=1601
|
|
211
|
+
_UNSHAREPROJECTWITHSUPPORTREQUEST._serialized_end=1647
|
|
212
|
+
_PROJECTSERVICE._serialized_start=1650
|
|
213
|
+
_PROJECTSERVICE._serialized_end=3375
|
|
214
214
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -266,19 +266,23 @@ class LoadGeometryToSetupRequest(google.protobuf.message.Message):
|
|
|
266
266
|
|
|
267
267
|
ID_FIELD_NUMBER: builtins.int
|
|
268
268
|
GEOMETRY_ID_FIELD_NUMBER: builtins.int
|
|
269
|
+
GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
269
270
|
id: builtins.str
|
|
270
271
|
"""Required. Identifies the project to load geometry into."""
|
|
271
272
|
geometry_id: builtins.str
|
|
272
|
-
"""Required. The geometry to load.
|
|
273
|
-
|
|
273
|
+
"""Required. The geometry to load."""
|
|
274
|
+
geometry_version_id: builtins.str
|
|
275
|
+
"""Optional. The specific geometry version to load. If not specified, the
|
|
276
|
+
latest version will be loaded.
|
|
274
277
|
"""
|
|
275
278
|
def __init__(
|
|
276
279
|
self,
|
|
277
280
|
*,
|
|
278
281
|
id: builtins.str = ...,
|
|
279
282
|
geometry_id: builtins.str = ...,
|
|
283
|
+
geometry_version_id: builtins.str = ...,
|
|
280
284
|
) -> None: ...
|
|
281
|
-
def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "id", b"id"]) -> None: ...
|
|
285
|
+
def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "id", b"id"]) -> None: ...
|
|
282
286
|
|
|
283
287
|
global___LoadGeometryToSetupRequest = LoadGeometryToSetupRequest
|
|
284
288
|
|
|
@@ -22,9 +22,10 @@ from luminarycloud._proto.output import reference_values_pb2 as proto_dot_output
|
|
|
22
22
|
from luminarycloud._proto.output import output_pb2 as proto_dot_output_dot_output__pb2
|
|
23
23
|
from luminarycloud._proto.client import simulation_pb2 as proto_dot_client_dot_simulation__pb2
|
|
24
24
|
from luminarycloud._proto.api.v0.luminarycloud.common import common_pb2 as proto_dot_api_dot_v0_dot_luminarycloud_dot_common_dot_common__pb2
|
|
25
|
+
from luminarycloud._proto.api.v0.luminarycloud.simulation_template import simulation_template_pb2 as proto_dot_api_dot_v0_dot_luminarycloud_dot_simulation__template_dot_simulation__template__pb2
|
|
25
26
|
|
|
26
27
|
|
|
27
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/simulation/simulation.proto\x12.luminary.proto.api.v0.luminarycloud.simulation\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\x1a#proto/output/reference_values.proto\x1a\x19proto/output/output.proto\x1a\x1dproto/client/simulation.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\"\x86\x04\n\nSimulation\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12[\n\x06status\x18\x05 \x01(\x0e\x32K.luminary.proto.api.v0.luminarycloud.simulation.Simulation.SimulationStatus\x12\x0f\n\x07mesh_id\x18\x06 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x07 \x01(\t\x12\x12\n\nproject_id\x18\x08 \x01(\t\x12\x10\n\x08\x64oe_name\x18\t \x01(\t\"\xd2\x01\n\x10SimulationStatus\x12!\n\x1dSIMULATION_STATUS_UNSPECIFIED\x10\x00\x12\x1d\n\x19SIMULATION_STATUS_PENDING\x10\x01\x12\x1c\n\x18SIMULATION_STATUS_ACTIVE\x10\x02\x12\x1f\n\x1bSIMULATION_STATUS_COMPLETED\x10\x03\x12\x1c\n\x18SIMULATION_STATUS_FAILED\x10\x04\x12\x1f\n\x1bSIMULATION_STATUS_SUSPENDED\x10\x05\"\xe8\x01\n\x11SimulationOptions\x12\x18\n\x10\x62\x61tch_processing\x18\x01 \x01(\x08\x12[\n\x08gpu_type\x18\x08 \x01(\x0e\x32I.luminary.proto.api.v0.luminarycloud.simulation.SimulationOptions.GPUType\x12\x11\n\tgpu_count\x18\t \x01(\r\"I\n\x07GPUType\x12\x18\n\x14GPU_TYPE_UNSPECIFIED\x10\x00\x12\x11\n\rGPU_TYPE_V100\x10\x01\x12\x11\n\rGPU_TYPE_A100\x10\x02\"\xf0\x02\n\x17\x43reateSimulationRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0f\n\x07mesh_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x1e\n\x16simulation_template_id\x18\x04 \x01(\t\x12]\n\x12simulation_options\x18\x05 \x01(\x0b\x32\x41.luminary.proto.api.v0.luminarycloud.simulation.SimulationOptions\x12\x44\n\x10simulation_param\x18\x06 \x01(\x0b\x32&.luminary.proto.client.SimulationParamB\x02\x18\x01\x12!\n\x15simulation_param_json\x18\x07 \x01(\x0c\x42\x02\x18\x01\x12\x13\n\x0b\x64\x65scription\x18\x08 \x01(\t\x12%\n\x1dnamed_variable_set_version_id\x18\t \x01(\t\"j\n\x18\x43reateSimulationResponse\x12N\n\nsimulation\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\"\"\n\x14GetSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\"g\n\x15GetSimulationResponse\x12N\n\nsimulation\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\"k\n\x17UpdateSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\x04name\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x07\n\x05_nameB\x0e\n\x0c_description\"j\n\x18UpdateSimulationResponse\x12N\n\nsimulation\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\",\n\x16ListSimulationsRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"j\n\x17ListSimulationsResponse\x12O\n\x0bsimulations\x18\x01 \x03(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\"%\n\x17\x44\x65leteSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\"&\n\x18SuspendSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\xcf\x02\n#GetSimulationGlobalResidualsRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x89\x01\n\x16residual_normalization\x18\x03 \x01(\x0e\x32i.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationGlobalResidualsRequest.ResidualNormalization\"\x89\x01\n\x15ResidualNormalization\x12&\n\"RESIDUAL_NORMALIZATION_UNSPECIFIED\x10\x00\x12#\n\x1fRESIDUAL_NORMALIZATION_RELATIVE\x10\x01\x12#\n\x1fRESIDUAL_NORMALIZATION_ABSOLUTE\x10\x02J\x04\x08\x04\x10\x05\"j\n$GetSimulationGlobalResidualsResponse\x12\x42\n\x08\x63sv_file\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"\xbe\x05\n)GetSimulationSurfaceQuantityOutputRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12<\n\rquantity_type\x18\x02 \x01(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x13\n\x0bsurface_ids\x18\x03 \x03(\t\x12Y\n\x10\x63\x61lculation_type\x18\x04 \x01(\x0e\x32?.luminary.proto.api.v0.luminarycloud.simulation.CalculationType\x12\x10\n\x08\x66rame_id\x18\x06 \x01(\t\x12L\n\x0f\x66orce_direction\x18\x11 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12J\n\rmoment_center\x18\x12 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12U\n\x0e\x61veraging_type\x18\x13 \x01(\x0e\x32=.luminary.proto.api.v0.luminarycloud.simulation.AveragingType\x12@\n\x10reference_values\x18\x14 \x01(\x0b\x32&.luminary.proto.output.ReferenceValues\x12?\n\x10vector_component\x18\x15 \x01(\x0e\x32%.luminary.proto.base.Vector3Component\x12K\n\x16moment_convention_type\x18\x16 \x01(\x0e\x32+.luminary.proto.output.MomentConventionTypeJ\x04\x08\x05\x10\x06\"p\n*GetSimulationSurfaceQuantityOutputResponse\x12\x42\n\x08\x63sv_file\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"J\n#GetSimulationSurfaceSolutionRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\ttime_step\x18\x03 \x01(\rJ\x04\x08\x02\x10\x03\"l\n$GetSimulationSurfaceSolutionResponse\x12>\n\x04\x66ile\x18\x02 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.FileJ\x04\x08\x01\x10\x02\"c\n\"GetSimulationVolumeSolutionRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\ttime_step\x18\x03 \x01(\r\x12\x18\n\x10single_precision\x18\x04 \x01(\x08J\x04\x08\x02\x10\x03\"k\n#GetSimulationVolumeSolutionResponse\x12>\n\x04\x66ile\x18\x02 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.FileJ\x04\x08\x01\x10\x02\",\n\x1eGetSimulationParametersRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\xed\x01\n\x15SimulationQueueStatus\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x15\n\rsimulation_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x31\n\rcreation_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x35\n\x0cstarted_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x0e\n\x06is_lma\x18\x06 \x01(\x08\x12\x10\n\x08priority\x18\x07 \x01(\x08\x42\x0f\n\r_started_time\"l\n\x1cListQueuedSimulationsRequest\x12\x16\n\tpage_size\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\npage_token\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x0c\n\n_page_sizeB\r\n\x0b_page_token\"\xa9\x01\n\x1dListQueuedSimulationsResponse\x12Z\n\x0bsimulations\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.simulation.SimulationQueueStatus\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0btotal_count\x18\x03 \x01(\x05*\x96\x01\n\x0f\x43\x61lculationType\x12 \n\x1c\x43\x41LCULATION_TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1a\x43\x41LCULATION_TYPE_AGGREGATE\x10\x01\x12 \n\x1c\x43\x41LCULATION_TYPE_PER_SURFACE\x10\x02\x12\x1f\n\x1b\x43\x41LCULATION_TYPE_DIFFERENCE\x10\x03*f\n\rAveragingType\x12\x1e\n\x1a\x41VERAGING_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x41VERAGING_TYPE_MASS_FLOW\x10\x01\x12\x17\n\x13\x41VERAGING_TYPE_AREA\x10\x02\x32\x89\x14\n\x11SimulationService\x12\xd7\x01\n\x10\x43reateSimulation\x12G.luminary.proto.api.v0.luminarycloud.simulation.CreateSimulationRequest\x1aH.luminary.proto.api.v0.luminarycloud.simulation.CreateSimulationResponse\"0\x82\xd3\xe4\x93\x02*\"%/v0/projects/{project_id}/simulations:\x01*\x12\xba\x01\n\rGetSimulation\x12\x44.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationRequest\x1a\x45.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationResponse\"\x1c\x82\xd3\xe4\x93\x02\x16\x12\x14/v0/simulations/{id}\x12\xc6\x01\n\x10UpdateSimulation\x12G.luminary.proto.api.v0.luminarycloud.simulation.UpdateSimulationRequest\x1aH.luminary.proto.api.v0.luminarycloud.simulation.UpdateSimulationResponse\"\x1f\x82\xd3\xe4\x93\x02\x19\x32\x14/v0/simulations/{id}:\x01*\x12\xd1\x01\n\x0fListSimulations\x12\x46.luminary.proto.api.v0.luminarycloud.simulation.ListSimulationsRequest\x1aG.luminary.proto.api.v0.luminarycloud.simulation.ListSimulationsResponse\"-\x82\xd3\xe4\x93\x02\'\x12%/v0/projects/{project_id}/simulations\x12\x91\x01\n\x10\x44\x65leteSimulation\x12G.luminary.proto.api.v0.luminarycloud.simulation.DeleteSimulationRequest\x1a\x16.google.protobuf.Empty\"\x1c\x82\xd3\xe4\x93\x02\x16*\x14/v0/simulations/{id}\x12\x9b\x01\n\x11SuspendSimulation\x12H.luminary.proto.api.v0.luminarycloud.simulation.SuspendSimulationRequest\x1a\x16.google.protobuf.Empty\"$\x82\xd3\xe4\x93\x02\x1e\"\x1c/v0/simulations/{id}:suspend\x12\xf7\x01\n\x1cGetSimulationGlobalResiduals\x12S.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationGlobalResidualsRequest\x1aT.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationGlobalResidualsResponse\",\x82\xd3\xe4\x93\x02&\x12$/v0/simulations/{id}:globalresiduals\x12\x8f\x02\n\"GetSimulationSurfaceQuantityOutput\x12Y.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceQuantityOutputRequest\x1aZ.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceQuantityOutputResponse\"2\x82\xd3\xe4\x93\x02,\x12*/v0/simulations/{id}:surfacequantityoutput\x12\xf7\x01\n\x1cGetSimulationSurfaceSolution\x12S.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceSolutionRequest\x1aT.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceSolutionResponse\",\x82\xd3\xe4\x93\x02&\x12$/v0/simulations/{id}:surfacesolution\x12\xf3\x01\n\x1bGetSimulationVolumeSolution\x12R.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationVolumeSolutionRequest\x1aS.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationVolumeSolutionResponse\"+\x82\xd3\xe4\x93\x02%\x12#/v0/simulations/{id}:volumesolution\x12\xba\x01\n\x17GetSimulationParameters\x12N.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationParametersRequest\x1a&.luminary.proto.client.SimulationParam\"\'\x82\xd3\xe4\x93\x02!\x12\x1f/v0/simulations/{id}/parameters\x12\xd4\x01\n\x15ListQueuedSimulations\x12L.luminary.proto.api.v0.luminarycloud.simulation.ListQueuedSimulationsRequest\x1aM.luminary.proto.api.v0.luminarycloud.simulation.ListQueuedSimulationsResponse\"\x1e\x82\xd3\xe4\x93\x02\x18\x12\x16/v0/queued-simulationsB>Z<luminarycloud.com/core/proto/api/v0/luminarycloud/simulationb\x06proto3')
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/simulation/simulation.proto\x12.luminary.proto.api.v0.luminarycloud.simulation\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\x1a#proto/output/reference_values.proto\x1a\x19proto/output/output.proto\x1a\x1dproto/client/simulation.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1aHproto/api/v0/luminarycloud/simulation_template/simulation_template.proto\"\x86\x04\n\nSimulation\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12[\n\x06status\x18\x05 \x01(\x0e\x32K.luminary.proto.api.v0.luminarycloud.simulation.Simulation.SimulationStatus\x12\x0f\n\x07mesh_id\x18\x06 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x07 \x01(\t\x12\x12\n\nproject_id\x18\x08 \x01(\t\x12\x10\n\x08\x64oe_name\x18\t \x01(\t\"\xd2\x01\n\x10SimulationStatus\x12!\n\x1dSIMULATION_STATUS_UNSPECIFIED\x10\x00\x12\x1d\n\x19SIMULATION_STATUS_PENDING\x10\x01\x12\x1c\n\x18SIMULATION_STATUS_ACTIVE\x10\x02\x12\x1f\n\x1bSIMULATION_STATUS_COMPLETED\x10\x03\x12\x1c\n\x18SIMULATION_STATUS_FAILED\x10\x04\x12\x1f\n\x1bSIMULATION_STATUS_SUSPENDED\x10\x05\"\x8c\x02\n\x11SimulationOptions\x12\x18\n\x10\x62\x61tch_processing\x18\x01 \x01(\x08\x12[\n\x08gpu_type\x18\x08 \x01(\x0e\x32I.luminary.proto.api.v0.luminarycloud.simulation.SimulationOptions.GPUType\x12\x11\n\tgpu_count\x18\t \x01(\r\"m\n\x07GPUType\x12\x18\n\x14GPU_TYPE_UNSPECIFIED\x10\x00\x12\x11\n\rGPU_TYPE_V100\x10\x01\x12\x11\n\rGPU_TYPE_A100\x10\x02\x12\x0f\n\x0bGPU_TYPE_T4\x10\x03\x12\x11\n\rGPU_TYPE_H100\x10\x04\"\xda\x03\n\x17\x43reateSimulationRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0f\n\x07mesh_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x1e\n\x16simulation_template_id\x18\x04 \x01(\t\x12]\n\x12simulation_options\x18\x05 \x01(\x0b\x32\x41.luminary.proto.api.v0.luminarycloud.simulation.SimulationOptions\x12\x44\n\x10simulation_param\x18\x06 \x01(\x0b\x32&.luminary.proto.client.SimulationParamB\x02\x18\x01\x12!\n\x15simulation_param_json\x18\x07 \x01(\x0c\x42\x02\x18\x01\x12\x13\n\x0b\x64\x65scription\x18\x08 \x01(\t\x12%\n\x1dnamed_variable_set_version_id\x18\t \x01(\t\x12h\n\x13simulation_template\x18\n \x01(\x0b\x32K.luminary.proto.api.v0.luminarycloud.simulation_template.SimulationTemplate\"j\n\x18\x43reateSimulationResponse\x12N\n\nsimulation\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\"\"\n\x14GetSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\"g\n\x15GetSimulationResponse\x12N\n\nsimulation\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\"k\n\x17UpdateSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\x04name\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x07\n\x05_nameB\x0e\n\x0c_description\"j\n\x18UpdateSimulationResponse\x12N\n\nsimulation\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\",\n\x16ListSimulationsRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"j\n\x17ListSimulationsResponse\x12O\n\x0bsimulations\x18\x01 \x03(\x0b\x32:.luminary.proto.api.v0.luminarycloud.simulation.Simulation\"%\n\x17\x44\x65leteSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\"&\n\x18SuspendSimulationRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\xcf\x02\n#GetSimulationGlobalResidualsRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x89\x01\n\x16residual_normalization\x18\x03 \x01(\x0e\x32i.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationGlobalResidualsRequest.ResidualNormalization\"\x89\x01\n\x15ResidualNormalization\x12&\n\"RESIDUAL_NORMALIZATION_UNSPECIFIED\x10\x00\x12#\n\x1fRESIDUAL_NORMALIZATION_RELATIVE\x10\x01\x12#\n\x1fRESIDUAL_NORMALIZATION_ABSOLUTE\x10\x02J\x04\x08\x04\x10\x05\"j\n$GetSimulationGlobalResidualsResponse\x12\x42\n\x08\x63sv_file\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"\xbe\x05\n)GetSimulationSurfaceQuantityOutputRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12<\n\rquantity_type\x18\x02 \x01(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x13\n\x0bsurface_ids\x18\x03 \x03(\t\x12Y\n\x10\x63\x61lculation_type\x18\x04 \x01(\x0e\x32?.luminary.proto.api.v0.luminarycloud.simulation.CalculationType\x12\x10\n\x08\x66rame_id\x18\x06 \x01(\t\x12L\n\x0f\x66orce_direction\x18\x11 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12J\n\rmoment_center\x18\x12 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12U\n\x0e\x61veraging_type\x18\x13 \x01(\x0e\x32=.luminary.proto.api.v0.luminarycloud.simulation.AveragingType\x12@\n\x10reference_values\x18\x14 \x01(\x0b\x32&.luminary.proto.output.ReferenceValues\x12?\n\x10vector_component\x18\x15 \x01(\x0e\x32%.luminary.proto.base.Vector3Component\x12K\n\x16moment_convention_type\x18\x16 \x01(\x0e\x32+.luminary.proto.output.MomentConventionTypeJ\x04\x08\x05\x10\x06\"p\n*GetSimulationSurfaceQuantityOutputResponse\x12\x42\n\x08\x63sv_file\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"J\n#GetSimulationSurfaceSolutionRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\ttime_step\x18\x03 \x01(\rJ\x04\x08\x02\x10\x03\"l\n$GetSimulationSurfaceSolutionResponse\x12>\n\x04\x66ile\x18\x02 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.FileJ\x04\x08\x01\x10\x02\"c\n\"GetSimulationVolumeSolutionRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\ttime_step\x18\x03 \x01(\r\x12\x18\n\x10single_precision\x18\x04 \x01(\x08J\x04\x08\x02\x10\x03\"k\n#GetSimulationVolumeSolutionResponse\x12>\n\x04\x66ile\x18\x02 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.FileJ\x04\x08\x01\x10\x02\",\n\x1eGetSimulationParametersRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\xed\x01\n\x15SimulationQueueStatus\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x15\n\rsimulation_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x31\n\rcreation_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x35\n\x0cstarted_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12\x0e\n\x06is_lma\x18\x06 \x01(\x08\x12\x10\n\x08priority\x18\x07 \x01(\x08\x42\x0f\n\r_started_time\"l\n\x1cListQueuedSimulationsRequest\x12\x16\n\tpage_size\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\npage_token\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x0c\n\n_page_sizeB\r\n\x0b_page_token\"\xa9\x01\n\x1dListQueuedSimulationsResponse\x12Z\n\x0bsimulations\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.simulation.SimulationQueueStatus\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0btotal_count\x18\x03 \x01(\x05\"/\n\x15GetWorkflowIDsRequest\x12\x16\n\x0esimulation_ids\x18\x01 \x03(\t\"\xa5\x01\n\x16GetWorkflowIDsResponse\x12^\n\x04\x64\x61ta\x18\x01 \x03(\x0b\x32P.luminary.proto.api.v0.luminarycloud.simulation.GetWorkflowIDsResponse.DataEntry\x1a+\n\tDataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01*\x96\x01\n\x0f\x43\x61lculationType\x12 \n\x1c\x43\x41LCULATION_TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1a\x43\x41LCULATION_TYPE_AGGREGATE\x10\x01\x12 \n\x1c\x43\x41LCULATION_TYPE_PER_SURFACE\x10\x02\x12\x1f\n\x1b\x43\x41LCULATION_TYPE_DIFFERENCE\x10\x03*f\n\rAveragingType\x12\x1e\n\x1a\x41VERAGING_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x41VERAGING_TYPE_MASS_FLOW\x10\x01\x12\x17\n\x13\x41VERAGING_TYPE_AREA\x10\x02\x32\xd3\x15\n\x11SimulationService\x12\xd7\x01\n\x10\x43reateSimulation\x12G.luminary.proto.api.v0.luminarycloud.simulation.CreateSimulationRequest\x1aH.luminary.proto.api.v0.luminarycloud.simulation.CreateSimulationResponse\"0\x82\xd3\xe4\x93\x02*\"%/v0/projects/{project_id}/simulations:\x01*\x12\xba\x01\n\rGetSimulation\x12\x44.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationRequest\x1a\x45.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationResponse\"\x1c\x82\xd3\xe4\x93\x02\x16\x12\x14/v0/simulations/{id}\x12\xc6\x01\n\x10UpdateSimulation\x12G.luminary.proto.api.v0.luminarycloud.simulation.UpdateSimulationRequest\x1aH.luminary.proto.api.v0.luminarycloud.simulation.UpdateSimulationResponse\"\x1f\x82\xd3\xe4\x93\x02\x19\x32\x14/v0/simulations/{id}:\x01*\x12\xd1\x01\n\x0fListSimulations\x12\x46.luminary.proto.api.v0.luminarycloud.simulation.ListSimulationsRequest\x1aG.luminary.proto.api.v0.luminarycloud.simulation.ListSimulationsResponse\"-\x82\xd3\xe4\x93\x02\'\x12%/v0/projects/{project_id}/simulations\x12\x91\x01\n\x10\x44\x65leteSimulation\x12G.luminary.proto.api.v0.luminarycloud.simulation.DeleteSimulationRequest\x1a\x16.google.protobuf.Empty\"\x1c\x82\xd3\xe4\x93\x02\x16*\x14/v0/simulations/{id}\x12\x9b\x01\n\x11SuspendSimulation\x12H.luminary.proto.api.v0.luminarycloud.simulation.SuspendSimulationRequest\x1a\x16.google.protobuf.Empty\"$\x82\xd3\xe4\x93\x02\x1e\"\x1c/v0/simulations/{id}:suspend\x12\xf7\x01\n\x1cGetSimulationGlobalResiduals\x12S.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationGlobalResidualsRequest\x1aT.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationGlobalResidualsResponse\",\x82\xd3\xe4\x93\x02&\x12$/v0/simulations/{id}:globalresiduals\x12\x8f\x02\n\"GetSimulationSurfaceQuantityOutput\x12Y.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceQuantityOutputRequest\x1aZ.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceQuantityOutputResponse\"2\x82\xd3\xe4\x93\x02,\x12*/v0/simulations/{id}:surfacequantityoutput\x12\xf7\x01\n\x1cGetSimulationSurfaceSolution\x12S.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceSolutionRequest\x1aT.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationSurfaceSolutionResponse\",\x82\xd3\xe4\x93\x02&\x12$/v0/simulations/{id}:surfacesolution\x12\xf3\x01\n\x1bGetSimulationVolumeSolution\x12R.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationVolumeSolutionRequest\x1aS.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationVolumeSolutionResponse\"+\x82\xd3\xe4\x93\x02%\x12#/v0/simulations/{id}:volumesolution\x12\xba\x01\n\x17GetSimulationParameters\x12N.luminary.proto.api.v0.luminarycloud.simulation.GetSimulationParametersRequest\x1a&.luminary.proto.client.SimulationParam\"\'\x82\xd3\xe4\x93\x02!\x12\x1f/v0/simulations/{id}/parameters\x12\xd4\x01\n\x15ListQueuedSimulations\x12L.luminary.proto.api.v0.luminarycloud.simulation.ListQueuedSimulationsRequest\x1aM.luminary.proto.api.v0.luminarycloud.simulation.ListQueuedSimulationsResponse\"\x1e\x82\xd3\xe4\x93\x02\x18\x12\x16/v0/queued-simulations\x12\xc7\x01\n\x0eGetWorkflowIDs\x12\x45.luminary.proto.api.v0.luminarycloud.simulation.GetWorkflowIDsRequest\x1a\x46.luminary.proto.api.v0.luminarycloud.simulation.GetWorkflowIDsResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/v0/simulations:getworkflowidsB>Z<luminarycloud.com/core/proto/api/v0/luminarycloud/simulationb\x06proto3')
|
|
28
29
|
|
|
29
30
|
_CALCULATIONTYPE = DESCRIPTOR.enum_types_by_name['CalculationType']
|
|
30
31
|
CalculationType = enum_type_wrapper.EnumTypeWrapper(_CALCULATIONTYPE)
|
|
@@ -63,6 +64,9 @@ _GETSIMULATIONPARAMETERSREQUEST = DESCRIPTOR.message_types_by_name['GetSimulatio
|
|
|
63
64
|
_SIMULATIONQUEUESTATUS = DESCRIPTOR.message_types_by_name['SimulationQueueStatus']
|
|
64
65
|
_LISTQUEUEDSIMULATIONSREQUEST = DESCRIPTOR.message_types_by_name['ListQueuedSimulationsRequest']
|
|
65
66
|
_LISTQUEUEDSIMULATIONSRESPONSE = DESCRIPTOR.message_types_by_name['ListQueuedSimulationsResponse']
|
|
67
|
+
_GETWORKFLOWIDSREQUEST = DESCRIPTOR.message_types_by_name['GetWorkflowIDsRequest']
|
|
68
|
+
_GETWORKFLOWIDSRESPONSE = DESCRIPTOR.message_types_by_name['GetWorkflowIDsResponse']
|
|
69
|
+
_GETWORKFLOWIDSRESPONSE_DATAENTRY = _GETWORKFLOWIDSRESPONSE.nested_types_by_name['DataEntry']
|
|
66
70
|
_SIMULATION_SIMULATIONSTATUS = _SIMULATION.enum_types_by_name['SimulationStatus']
|
|
67
71
|
_SIMULATIONOPTIONS_GPUTYPE = _SIMULATIONOPTIONS.enum_types_by_name['GPUType']
|
|
68
72
|
_GETSIMULATIONGLOBALRESIDUALSREQUEST_RESIDUALNORMALIZATION = _GETSIMULATIONGLOBALRESIDUALSREQUEST.enum_types_by_name['ResidualNormalization']
|
|
@@ -234,6 +238,28 @@ ListQueuedSimulationsResponse = _reflection.GeneratedProtocolMessageType('ListQu
|
|
|
234
238
|
})
|
|
235
239
|
_sym_db.RegisterMessage(ListQueuedSimulationsResponse)
|
|
236
240
|
|
|
241
|
+
GetWorkflowIDsRequest = _reflection.GeneratedProtocolMessageType('GetWorkflowIDsRequest', (_message.Message,), {
|
|
242
|
+
'DESCRIPTOR' : _GETWORKFLOWIDSREQUEST,
|
|
243
|
+
'__module__' : 'proto.api.v0.luminarycloud.simulation.simulation_pb2'
|
|
244
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.simulation.GetWorkflowIDsRequest)
|
|
245
|
+
})
|
|
246
|
+
_sym_db.RegisterMessage(GetWorkflowIDsRequest)
|
|
247
|
+
|
|
248
|
+
GetWorkflowIDsResponse = _reflection.GeneratedProtocolMessageType('GetWorkflowIDsResponse', (_message.Message,), {
|
|
249
|
+
|
|
250
|
+
'DataEntry' : _reflection.GeneratedProtocolMessageType('DataEntry', (_message.Message,), {
|
|
251
|
+
'DESCRIPTOR' : _GETWORKFLOWIDSRESPONSE_DATAENTRY,
|
|
252
|
+
'__module__' : 'proto.api.v0.luminarycloud.simulation.simulation_pb2'
|
|
253
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.simulation.GetWorkflowIDsResponse.DataEntry)
|
|
254
|
+
})
|
|
255
|
+
,
|
|
256
|
+
'DESCRIPTOR' : _GETWORKFLOWIDSRESPONSE,
|
|
257
|
+
'__module__' : 'proto.api.v0.luminarycloud.simulation.simulation_pb2'
|
|
258
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.simulation.GetWorkflowIDsResponse)
|
|
259
|
+
})
|
|
260
|
+
_sym_db.RegisterMessage(GetWorkflowIDsResponse)
|
|
261
|
+
_sym_db.RegisterMessage(GetWorkflowIDsResponse.DataEntry)
|
|
262
|
+
|
|
237
263
|
_SIMULATIONSERVICE = DESCRIPTOR.services_by_name['SimulationService']
|
|
238
264
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
239
265
|
|
|
@@ -243,6 +269,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
243
269
|
_CREATESIMULATIONREQUEST.fields_by_name['simulation_param']._serialized_options = b'\030\001'
|
|
244
270
|
_CREATESIMULATIONREQUEST.fields_by_name['simulation_param_json']._options = None
|
|
245
271
|
_CREATESIMULATIONREQUEST.fields_by_name['simulation_param_json']._serialized_options = b'\030\001'
|
|
272
|
+
_GETWORKFLOWIDSRESPONSE_DATAENTRY._options = None
|
|
273
|
+
_GETWORKFLOWIDSRESPONSE_DATAENTRY._serialized_options = b'8\001'
|
|
246
274
|
_SIMULATIONSERVICE.methods_by_name['CreateSimulation']._options = None
|
|
247
275
|
_SIMULATIONSERVICE.methods_by_name['CreateSimulation']._serialized_options = b'\202\323\344\223\002*\"%/v0/projects/{project_id}/simulations:\001*'
|
|
248
276
|
_SIMULATIONSERVICE.methods_by_name['GetSimulation']._options = None
|
|
@@ -267,64 +295,72 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
267
295
|
_SIMULATIONSERVICE.methods_by_name['GetSimulationParameters']._serialized_options = b'\202\323\344\223\002!\022\037/v0/simulations/{id}/parameters'
|
|
268
296
|
_SIMULATIONSERVICE.methods_by_name['ListQueuedSimulations']._options = None
|
|
269
297
|
_SIMULATIONSERVICE.methods_by_name['ListQueuedSimulations']._serialized_options = b'\202\323\344\223\002\030\022\026/v0/queued-simulations'
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
298
|
+
_SIMULATIONSERVICE.methods_by_name['GetWorkflowIDs']._options = None
|
|
299
|
+
_SIMULATIONSERVICE.methods_by_name['GetWorkflowIDs']._serialized_options = b'\202\323\344\223\002 \022\036/v0/simulations:getworkflowids'
|
|
300
|
+
_CALCULATIONTYPE._serialized_start=4884
|
|
301
|
+
_CALCULATIONTYPE._serialized_end=5034
|
|
302
|
+
_AVERAGINGTYPE._serialized_start=5036
|
|
303
|
+
_AVERAGINGTYPE._serialized_end=5138
|
|
304
|
+
_SIMULATION._serialized_start=470
|
|
305
|
+
_SIMULATION._serialized_end=988
|
|
306
|
+
_SIMULATION_SIMULATIONSTATUS._serialized_start=778
|
|
307
|
+
_SIMULATION_SIMULATIONSTATUS._serialized_end=988
|
|
308
|
+
_SIMULATIONOPTIONS._serialized_start=991
|
|
309
|
+
_SIMULATIONOPTIONS._serialized_end=1259
|
|
310
|
+
_SIMULATIONOPTIONS_GPUTYPE._serialized_start=1150
|
|
311
|
+
_SIMULATIONOPTIONS_GPUTYPE._serialized_end=1259
|
|
312
|
+
_CREATESIMULATIONREQUEST._serialized_start=1262
|
|
313
|
+
_CREATESIMULATIONREQUEST._serialized_end=1736
|
|
314
|
+
_CREATESIMULATIONRESPONSE._serialized_start=1738
|
|
315
|
+
_CREATESIMULATIONRESPONSE._serialized_end=1844
|
|
316
|
+
_GETSIMULATIONREQUEST._serialized_start=1846
|
|
317
|
+
_GETSIMULATIONREQUEST._serialized_end=1880
|
|
318
|
+
_GETSIMULATIONRESPONSE._serialized_start=1882
|
|
319
|
+
_GETSIMULATIONRESPONSE._serialized_end=1985
|
|
320
|
+
_UPDATESIMULATIONREQUEST._serialized_start=1987
|
|
321
|
+
_UPDATESIMULATIONREQUEST._serialized_end=2094
|
|
322
|
+
_UPDATESIMULATIONRESPONSE._serialized_start=2096
|
|
323
|
+
_UPDATESIMULATIONRESPONSE._serialized_end=2202
|
|
324
|
+
_LISTSIMULATIONSREQUEST._serialized_start=2204
|
|
325
|
+
_LISTSIMULATIONSREQUEST._serialized_end=2248
|
|
326
|
+
_LISTSIMULATIONSRESPONSE._serialized_start=2250
|
|
327
|
+
_LISTSIMULATIONSRESPONSE._serialized_end=2356
|
|
328
|
+
_DELETESIMULATIONREQUEST._serialized_start=2358
|
|
329
|
+
_DELETESIMULATIONREQUEST._serialized_end=2395
|
|
330
|
+
_SUSPENDSIMULATIONREQUEST._serialized_start=2397
|
|
331
|
+
_SUSPENDSIMULATIONREQUEST._serialized_end=2435
|
|
332
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST._serialized_start=2438
|
|
333
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST._serialized_end=2773
|
|
334
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST_RESIDUALNORMALIZATION._serialized_start=2630
|
|
335
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST_RESIDUALNORMALIZATION._serialized_end=2767
|
|
336
|
+
_GETSIMULATIONGLOBALRESIDUALSRESPONSE._serialized_start=2775
|
|
337
|
+
_GETSIMULATIONGLOBALRESIDUALSRESPONSE._serialized_end=2881
|
|
338
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTREQUEST._serialized_start=2884
|
|
339
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTREQUEST._serialized_end=3586
|
|
340
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTRESPONSE._serialized_start=3588
|
|
341
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTRESPONSE._serialized_end=3700
|
|
342
|
+
_GETSIMULATIONSURFACESOLUTIONREQUEST._serialized_start=3702
|
|
343
|
+
_GETSIMULATIONSURFACESOLUTIONREQUEST._serialized_end=3776
|
|
344
|
+
_GETSIMULATIONSURFACESOLUTIONRESPONSE._serialized_start=3778
|
|
345
|
+
_GETSIMULATIONSURFACESOLUTIONRESPONSE._serialized_end=3886
|
|
346
|
+
_GETSIMULATIONVOLUMESOLUTIONREQUEST._serialized_start=3888
|
|
347
|
+
_GETSIMULATIONVOLUMESOLUTIONREQUEST._serialized_end=3987
|
|
348
|
+
_GETSIMULATIONVOLUMESOLUTIONRESPONSE._serialized_start=3989
|
|
349
|
+
_GETSIMULATIONVOLUMESOLUTIONRESPONSE._serialized_end=4096
|
|
350
|
+
_GETSIMULATIONPARAMETERSREQUEST._serialized_start=4098
|
|
351
|
+
_GETSIMULATIONPARAMETERSREQUEST._serialized_end=4142
|
|
352
|
+
_SIMULATIONQUEUESTATUS._serialized_start=4145
|
|
353
|
+
_SIMULATIONQUEUESTATUS._serialized_end=4382
|
|
354
|
+
_LISTQUEUEDSIMULATIONSREQUEST._serialized_start=4384
|
|
355
|
+
_LISTQUEUEDSIMULATIONSREQUEST._serialized_end=4492
|
|
356
|
+
_LISTQUEUEDSIMULATIONSRESPONSE._serialized_start=4495
|
|
357
|
+
_LISTQUEUEDSIMULATIONSRESPONSE._serialized_end=4664
|
|
358
|
+
_GETWORKFLOWIDSREQUEST._serialized_start=4666
|
|
359
|
+
_GETWORKFLOWIDSREQUEST._serialized_end=4713
|
|
360
|
+
_GETWORKFLOWIDSRESPONSE._serialized_start=4716
|
|
361
|
+
_GETWORKFLOWIDSRESPONSE._serialized_end=4881
|
|
362
|
+
_GETWORKFLOWIDSRESPONSE_DATAENTRY._serialized_start=4838
|
|
363
|
+
_GETWORKFLOWIDSRESPONSE_DATAENTRY._serialized_end=4881
|
|
364
|
+
_SIMULATIONSERVICE._serialized_start=5141
|
|
365
|
+
_SIMULATIONSERVICE._serialized_end=7912
|
|
330
366
|
# @@protoc_insertion_point(module_scope)
|