luminarycloud 0.18.1__py3-none-any.whl → 0.19.1__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/_client/client.py +21 -5
- luminarycloud/_client/http_client.py +168 -0
- luminarycloud/_client/rpc_error.py +1 -0
- luminarycloud/_client/tracing.py +72 -22
- luminarycloud/_helpers/_wait_for_mesh.py +5 -7
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +9 -8
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +83 -25
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +214 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +60 -60
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +5 -1
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +70 -40
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +64 -3
- luminarycloud/_proto/client/simulation_pb2.py +347 -332
- luminarycloud/_proto/client/simulation_pb2.pyi +55 -9
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +9 -8
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +29 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.pyi +7 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +70 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +30 -0
- luminarycloud/enum/quantity_type.py +13 -0
- luminarycloud/exceptions.py +6 -0
- luminarycloud/params/enum/_enum_wrappers.py +28 -2
- luminarycloud/params/simulation/material/material_solid_.py +15 -1
- luminarycloud/params/simulation/sliding_interfaces_.py +8 -0
- luminarycloud/physics_ai/architectures.py +58 -0
- luminarycloud/physics_ai/inference.py +30 -25
- luminarycloud/physics_ai/training_jobs.py +37 -0
- luminarycloud/pipelines/api.py +50 -102
- luminarycloud/project.py +15 -43
- luminarycloud/simulation.py +2 -0
- luminarycloud/simulation_template.py +2 -1
- luminarycloud/tables.py +14 -15
- luminarycloud/vis/visualization.py +2 -2
- {luminarycloud-0.18.1.dist-info → luminarycloud-0.19.1.dist-info}/METADATA +1 -1
- {luminarycloud-0.18.1.dist-info → luminarycloud-0.19.1.dist-info}/RECORD +40 -39
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.py +0 -246
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.pyi +0 -420
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.py +0 -240
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.pyi +0 -90
- luminarycloud/enum/pipeline_job_status.py +0 -23
- {luminarycloud-0.18.1.dist-info → luminarycloud-0.19.1.dist-info}/WHEEL +0 -0
|
@@ -8,7 +8,9 @@ import google.protobuf.descriptor
|
|
|
8
8
|
import google.protobuf.internal.containers
|
|
9
9
|
import google.protobuf.internal.enum_type_wrapper
|
|
10
10
|
import google.protobuf.message
|
|
11
|
+
import google.protobuf.timestamp_pb2
|
|
11
12
|
import luminarycloud._proto.api.v0.luminarycloud.common.common_pb2
|
|
13
|
+
import luminarycloud._proto.base.base_pb2
|
|
12
14
|
import luminarycloud._proto.quantity.quantity_pb2
|
|
13
15
|
import sys
|
|
14
16
|
import typing
|
|
@@ -52,6 +54,58 @@ LIFECYCLE_STATE_RETIRED: PhysicsAiLifecycleState.ValueType # 4
|
|
|
52
54
|
"""Archived; no training or inference support."""
|
|
53
55
|
global___PhysicsAiLifecycleState = PhysicsAiLifecycleState
|
|
54
56
|
|
|
57
|
+
class _TrainingDataSourceType:
|
|
58
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
59
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
60
|
+
|
|
61
|
+
class _TrainingDataSourceTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_TrainingDataSourceType.ValueType], builtins.type): # noqa: F821
|
|
62
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
63
|
+
TRAINING_DATA_SOURCE_TYPE_UNSPECIFIED: _TrainingDataSourceType.ValueType # 0
|
|
64
|
+
"""Default value, should not be used in practice."""
|
|
65
|
+
TRAINING_DATA_SOURCE_TYPE_SIMULATION_SOLUTIONS: _TrainingDataSourceType.ValueType # 1
|
|
66
|
+
"""Training data from simulation solutions."""
|
|
67
|
+
TRAINING_DATA_SOURCE_TYPE_EXTERNAL_DATASET: _TrainingDataSourceType.ValueType # 2
|
|
68
|
+
"""Training data from external dataset."""
|
|
69
|
+
|
|
70
|
+
class TrainingDataSourceType(_TrainingDataSourceType, metaclass=_TrainingDataSourceTypeEnumTypeWrapper):
|
|
71
|
+
"""Training data source types"""
|
|
72
|
+
|
|
73
|
+
TRAINING_DATA_SOURCE_TYPE_UNSPECIFIED: TrainingDataSourceType.ValueType # 0
|
|
74
|
+
"""Default value, should not be used in practice."""
|
|
75
|
+
TRAINING_DATA_SOURCE_TYPE_SIMULATION_SOLUTIONS: TrainingDataSourceType.ValueType # 1
|
|
76
|
+
"""Training data from simulation solutions."""
|
|
77
|
+
TRAINING_DATA_SOURCE_TYPE_EXTERNAL_DATASET: TrainingDataSourceType.ValueType # 2
|
|
78
|
+
"""Training data from external dataset."""
|
|
79
|
+
global___TrainingDataSourceType = TrainingDataSourceType
|
|
80
|
+
|
|
81
|
+
class _ModelInitializationType:
|
|
82
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
83
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
84
|
+
|
|
85
|
+
class _ModelInitializationTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ModelInitializationType.ValueType], builtins.type): # noqa: F821
|
|
86
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
87
|
+
MODEL_INITIALIZATION_TYPE_UNSPECIFIED: _ModelInitializationType.ValueType # 0
|
|
88
|
+
"""Default value, should not be used in practice."""
|
|
89
|
+
MODEL_INITIALIZATION_TYPE_RANDOM: _ModelInitializationType.ValueType # 1
|
|
90
|
+
"""Random initialization."""
|
|
91
|
+
MODEL_INITIALIZATION_TYPE_MODEL_VERSION: _ModelInitializationType.ValueType # 2
|
|
92
|
+
"""Initialize from existing model version."""
|
|
93
|
+
MODEL_INITIALIZATION_TYPE_CHECKPOINT: _ModelInitializationType.ValueType # 3
|
|
94
|
+
"""Initialize from checkpoint."""
|
|
95
|
+
|
|
96
|
+
class ModelInitializationType(_ModelInitializationType, metaclass=_ModelInitializationTypeEnumTypeWrapper):
|
|
97
|
+
"""Model initialization types"""
|
|
98
|
+
|
|
99
|
+
MODEL_INITIALIZATION_TYPE_UNSPECIFIED: ModelInitializationType.ValueType # 0
|
|
100
|
+
"""Default value, should not be used in practice."""
|
|
101
|
+
MODEL_INITIALIZATION_TYPE_RANDOM: ModelInitializationType.ValueType # 1
|
|
102
|
+
"""Random initialization."""
|
|
103
|
+
MODEL_INITIALIZATION_TYPE_MODEL_VERSION: ModelInitializationType.ValueType # 2
|
|
104
|
+
"""Initialize from existing model version."""
|
|
105
|
+
MODEL_INITIALIZATION_TYPE_CHECKPOINT: ModelInitializationType.ValueType # 3
|
|
106
|
+
"""Initialize from checkpoint."""
|
|
107
|
+
global___ModelInitializationType = ModelInitializationType
|
|
108
|
+
|
|
55
109
|
class PhysicsAiArchitectureVersion(google.protobuf.message.Message):
|
|
56
110
|
"""A physics ai architecture version."""
|
|
57
111
|
|
|
@@ -290,3 +344,163 @@ class GetSolutionDataPhysicsAIResponse(google.protobuf.message.Message):
|
|
|
290
344
|
def ClearField(self, field_name: typing_extensions.Literal["file", b"file"]) -> None: ...
|
|
291
345
|
|
|
292
346
|
global___GetSolutionDataPhysicsAIResponse = GetSolutionDataPhysicsAIResponse
|
|
347
|
+
|
|
348
|
+
class TrainingSolution(google.protobuf.message.Message):
|
|
349
|
+
"""A training solution specification"""
|
|
350
|
+
|
|
351
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
352
|
+
|
|
353
|
+
SOLUTION_ID_FIELD_NUMBER: builtins.int
|
|
354
|
+
DATA_SPLIT_FIELD_NUMBER: builtins.int
|
|
355
|
+
solution_id: builtins.str
|
|
356
|
+
"""Solution ID to use for training."""
|
|
357
|
+
data_split: builtins.str
|
|
358
|
+
"""Data split for this solution (train, validation, test)."""
|
|
359
|
+
def __init__(
|
|
360
|
+
self,
|
|
361
|
+
*,
|
|
362
|
+
solution_id: builtins.str = ...,
|
|
363
|
+
data_split: builtins.str = ...,
|
|
364
|
+
) -> None: ...
|
|
365
|
+
def ClearField(self, field_name: typing_extensions.Literal["data_split", b"data_split", "solution_id", b"solution_id"]) -> None: ...
|
|
366
|
+
|
|
367
|
+
global___TrainingSolution = TrainingSolution
|
|
368
|
+
|
|
369
|
+
class PhysicsAiTrainingJob(google.protobuf.message.Message):
|
|
370
|
+
"""A Physics AI training job"""
|
|
371
|
+
|
|
372
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
373
|
+
|
|
374
|
+
ID_FIELD_NUMBER: builtins.int
|
|
375
|
+
ARCHITECTURE_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
376
|
+
USER_ID_FIELD_NUMBER: builtins.int
|
|
377
|
+
TRAINING_CONFIG_FIELD_NUMBER: builtins.int
|
|
378
|
+
TRAINING_DATA_SOURCE_TYPE_FIELD_NUMBER: builtins.int
|
|
379
|
+
TRAINING_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
380
|
+
EXTERNAL_DATASET_URI_FIELD_NUMBER: builtins.int
|
|
381
|
+
INITIALIZATION_TYPE_FIELD_NUMBER: builtins.int
|
|
382
|
+
BASE_MODEL_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
383
|
+
STATUS_FIELD_NUMBER: builtins.int
|
|
384
|
+
ERROR_MESSAGE_FIELD_NUMBER: builtins.int
|
|
385
|
+
OUTPUT_MODEL_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
386
|
+
CREATION_TIME_FIELD_NUMBER: builtins.int
|
|
387
|
+
UPDATE_TIME_FIELD_NUMBER: builtins.int
|
|
388
|
+
COMPLETION_TIME_FIELD_NUMBER: builtins.int
|
|
389
|
+
id: builtins.str
|
|
390
|
+
"""Unique identifier for the training job."""
|
|
391
|
+
architecture_version_id: builtins.str
|
|
392
|
+
"""Architecture version ID being trained."""
|
|
393
|
+
user_id: builtins.str
|
|
394
|
+
"""User ID who submitted the job."""
|
|
395
|
+
training_config: builtins.str
|
|
396
|
+
"""Training configuration as JSON."""
|
|
397
|
+
training_data_source_type: global___TrainingDataSourceType.ValueType
|
|
398
|
+
"""Type of training data source."""
|
|
399
|
+
training_description: builtins.str
|
|
400
|
+
"""Description of the training job. (mutable)"""
|
|
401
|
+
external_dataset_uri: builtins.str
|
|
402
|
+
"""External dataset URI (if using external dataset)."""
|
|
403
|
+
initialization_type: global___ModelInitializationType.ValueType
|
|
404
|
+
"""Model initialization type."""
|
|
405
|
+
base_model_version_id: builtins.str
|
|
406
|
+
"""Base model version ID (if initializing from existing model)."""
|
|
407
|
+
@property
|
|
408
|
+
def status(self) -> luminarycloud._proto.base.base_pb2.JobStatus:
|
|
409
|
+
"""Current status of the training job. (mutable)"""
|
|
410
|
+
error_message: builtins.str
|
|
411
|
+
"""Error message (if failed)."""
|
|
412
|
+
output_model_version_id: builtins.str
|
|
413
|
+
"""Output model version ID (if completed, so mutable)."""
|
|
414
|
+
@property
|
|
415
|
+
def creation_time(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
416
|
+
"""Job creation time."""
|
|
417
|
+
@property
|
|
418
|
+
def update_time(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
419
|
+
"""Job last update time, updated when status changes. (mutable)"""
|
|
420
|
+
@property
|
|
421
|
+
def completion_time(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
422
|
+
"""Job completion time, set upon job completion. (mutable)"""
|
|
423
|
+
def __init__(
|
|
424
|
+
self,
|
|
425
|
+
*,
|
|
426
|
+
id: builtins.str = ...,
|
|
427
|
+
architecture_version_id: builtins.str = ...,
|
|
428
|
+
user_id: builtins.str = ...,
|
|
429
|
+
training_config: builtins.str = ...,
|
|
430
|
+
training_data_source_type: global___TrainingDataSourceType.ValueType = ...,
|
|
431
|
+
training_description: builtins.str = ...,
|
|
432
|
+
external_dataset_uri: builtins.str = ...,
|
|
433
|
+
initialization_type: global___ModelInitializationType.ValueType = ...,
|
|
434
|
+
base_model_version_id: builtins.str = ...,
|
|
435
|
+
status: luminarycloud._proto.base.base_pb2.JobStatus | None = ...,
|
|
436
|
+
error_message: builtins.str = ...,
|
|
437
|
+
output_model_version_id: builtins.str = ...,
|
|
438
|
+
creation_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
439
|
+
update_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
440
|
+
completion_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
441
|
+
) -> None: ...
|
|
442
|
+
def HasField(self, field_name: typing_extensions.Literal["completion_time", b"completion_time", "creation_time", b"creation_time", "status", b"status", "update_time", b"update_time"]) -> builtins.bool: ...
|
|
443
|
+
def ClearField(self, field_name: typing_extensions.Literal["architecture_version_id", b"architecture_version_id", "base_model_version_id", b"base_model_version_id", "completion_time", b"completion_time", "creation_time", b"creation_time", "error_message", b"error_message", "external_dataset_uri", b"external_dataset_uri", "id", b"id", "initialization_type", b"initialization_type", "output_model_version_id", b"output_model_version_id", "status", b"status", "training_config", b"training_config", "training_data_source_type", b"training_data_source_type", "training_description", b"training_description", "update_time", b"update_time", "user_id", b"user_id"]) -> None: ...
|
|
444
|
+
|
|
445
|
+
global___PhysicsAiTrainingJob = PhysicsAiTrainingJob
|
|
446
|
+
|
|
447
|
+
class SubmitTrainingJobRequest(google.protobuf.message.Message):
|
|
448
|
+
"""Request message for submitting a training job"""
|
|
449
|
+
|
|
450
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
451
|
+
|
|
452
|
+
ARCHITECTURE_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
453
|
+
TRAINING_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
454
|
+
EXTERNAL_DATASET_URI_FIELD_NUMBER: builtins.int
|
|
455
|
+
TRAINING_SOLUTIONS_FIELD_NUMBER: builtins.int
|
|
456
|
+
TRAINING_CONFIG_FIELD_NUMBER: builtins.int
|
|
457
|
+
INITIALIZATION_TYPE_FIELD_NUMBER: builtins.int
|
|
458
|
+
BASE_MODEL_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
459
|
+
architecture_version_id: builtins.str
|
|
460
|
+
"""Architecture version ID to train."""
|
|
461
|
+
training_description: builtins.str
|
|
462
|
+
"""Description of the training job."""
|
|
463
|
+
external_dataset_uri: builtins.str
|
|
464
|
+
"""External dataset URI"""
|
|
465
|
+
@property
|
|
466
|
+
def training_solutions(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___TrainingSolution]:
|
|
467
|
+
"""Training solutions"""
|
|
468
|
+
training_config: builtins.str
|
|
469
|
+
"""Training configuration in JSON format."""
|
|
470
|
+
initialization_type: global___ModelInitializationType.ValueType
|
|
471
|
+
"""Model initialization type."""
|
|
472
|
+
base_model_version_id: builtins.str
|
|
473
|
+
"""Base model version ID (if initializing from existing model)."""
|
|
474
|
+
def __init__(
|
|
475
|
+
self,
|
|
476
|
+
*,
|
|
477
|
+
architecture_version_id: builtins.str = ...,
|
|
478
|
+
training_description: builtins.str = ...,
|
|
479
|
+
external_dataset_uri: builtins.str = ...,
|
|
480
|
+
training_solutions: collections.abc.Iterable[global___TrainingSolution] | None = ...,
|
|
481
|
+
training_config: builtins.str = ...,
|
|
482
|
+
initialization_type: global___ModelInitializationType.ValueType = ...,
|
|
483
|
+
base_model_version_id: builtins.str = ...,
|
|
484
|
+
) -> None: ...
|
|
485
|
+
def ClearField(self, field_name: typing_extensions.Literal["architecture_version_id", b"architecture_version_id", "base_model_version_id", b"base_model_version_id", "external_dataset_uri", b"external_dataset_uri", "initialization_type", b"initialization_type", "training_config", b"training_config", "training_description", b"training_description", "training_solutions", b"training_solutions"]) -> None: ...
|
|
486
|
+
|
|
487
|
+
global___SubmitTrainingJobRequest = SubmitTrainingJobRequest
|
|
488
|
+
|
|
489
|
+
class SubmitTrainingJobResponse(google.protobuf.message.Message):
|
|
490
|
+
"""Response message for submitting a training job"""
|
|
491
|
+
|
|
492
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
493
|
+
|
|
494
|
+
TRAINING_JOB_FIELD_NUMBER: builtins.int
|
|
495
|
+
@property
|
|
496
|
+
def training_job(self) -> global___PhysicsAiTrainingJob:
|
|
497
|
+
"""The created training job."""
|
|
498
|
+
def __init__(
|
|
499
|
+
self,
|
|
500
|
+
*,
|
|
501
|
+
training_job: global___PhysicsAiTrainingJob | None = ...,
|
|
502
|
+
) -> None: ...
|
|
503
|
+
def HasField(self, field_name: typing_extensions.Literal["training_job", b"training_job"]) -> builtins.bool: ...
|
|
504
|
+
def ClearField(self, field_name: typing_extensions.Literal["training_job", b"training_job"]) -> None: ...
|
|
505
|
+
|
|
506
|
+
global___SubmitTrainingJobResponse = SubmitTrainingJobResponse
|
|
@@ -30,6 +30,11 @@ class PhysicsAiServiceStub(object):
|
|
|
30
30
|
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.GetSolutionDataPhysicsAIRequest.SerializeToString,
|
|
31
31
|
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.GetSolutionDataPhysicsAIResponse.FromString,
|
|
32
32
|
)
|
|
33
|
+
self.SubmitTrainingJob = channel.unary_unary(
|
|
34
|
+
'/luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiService/SubmitTrainingJob',
|
|
35
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.SubmitTrainingJobRequest.SerializeToString,
|
|
36
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.SubmitTrainingJobResponse.FromString,
|
|
37
|
+
)
|
|
33
38
|
|
|
34
39
|
|
|
35
40
|
class PhysicsAiServiceServicer(object):
|
|
@@ -57,6 +62,13 @@ class PhysicsAiServiceServicer(object):
|
|
|
57
62
|
context.set_details('Method not implemented!')
|
|
58
63
|
raise NotImplementedError('Method not implemented!')
|
|
59
64
|
|
|
65
|
+
def SubmitTrainingJob(self, request, context):
|
|
66
|
+
"""Submits a training job for a Physics AI architecture
|
|
67
|
+
"""
|
|
68
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
69
|
+
context.set_details('Method not implemented!')
|
|
70
|
+
raise NotImplementedError('Method not implemented!')
|
|
71
|
+
|
|
60
72
|
|
|
61
73
|
def add_PhysicsAiServiceServicer_to_server(servicer, server):
|
|
62
74
|
rpc_method_handlers = {
|
|
@@ -75,6 +87,11 @@ def add_PhysicsAiServiceServicer_to_server(servicer, server):
|
|
|
75
87
|
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.GetSolutionDataPhysicsAIRequest.FromString,
|
|
76
88
|
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.GetSolutionDataPhysicsAIResponse.SerializeToString,
|
|
77
89
|
),
|
|
90
|
+
'SubmitTrainingJob': grpc.unary_unary_rpc_method_handler(
|
|
91
|
+
servicer.SubmitTrainingJob,
|
|
92
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.SubmitTrainingJobRequest.FromString,
|
|
93
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.SubmitTrainingJobResponse.SerializeToString,
|
|
94
|
+
),
|
|
78
95
|
}
|
|
79
96
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
80
97
|
'luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiService', rpc_method_handlers)
|
|
@@ -136,3 +153,20 @@ class PhysicsAiService(object):
|
|
|
136
153
|
proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.GetSolutionDataPhysicsAIResponse.FromString,
|
|
137
154
|
options, channel_credentials,
|
|
138
155
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
156
|
+
|
|
157
|
+
@staticmethod
|
|
158
|
+
def SubmitTrainingJob(request,
|
|
159
|
+
target,
|
|
160
|
+
options=(),
|
|
161
|
+
channel_credentials=None,
|
|
162
|
+
call_credentials=None,
|
|
163
|
+
insecure=False,
|
|
164
|
+
compression=None,
|
|
165
|
+
wait_for_ready=None,
|
|
166
|
+
timeout=None,
|
|
167
|
+
metadata=None):
|
|
168
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiService/SubmitTrainingJob',
|
|
169
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.SubmitTrainingJobRequest.SerializeToString,
|
|
170
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.SubmitTrainingJobResponse.FromString,
|
|
171
|
+
options, channel_credentials,
|
|
172
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -25,6 +25,11 @@ class PhysicsAiServiceStub:
|
|
|
25
25
|
luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.GetSolutionDataPhysicsAIResponse,
|
|
26
26
|
]
|
|
27
27
|
"""Gets solution data with physics AI processing applied"""
|
|
28
|
+
SubmitTrainingJob: grpc.UnaryUnaryMultiCallable[
|
|
29
|
+
luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.SubmitTrainingJobRequest,
|
|
30
|
+
luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.SubmitTrainingJobResponse,
|
|
31
|
+
]
|
|
32
|
+
"""Submits a training job for a Physics AI architecture"""
|
|
28
33
|
|
|
29
34
|
class PhysicsAiServiceServicer(metaclass=abc.ABCMeta):
|
|
30
35
|
"""Manages physics ai architectures."""
|
|
@@ -50,5 +55,12 @@ class PhysicsAiServiceServicer(metaclass=abc.ABCMeta):
|
|
|
50
55
|
context: grpc.ServicerContext,
|
|
51
56
|
) -> luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.GetSolutionDataPhysicsAIResponse:
|
|
52
57
|
"""Gets solution data with physics AI processing applied"""
|
|
58
|
+
@abc.abstractmethod
|
|
59
|
+
def SubmitTrainingJob(
|
|
60
|
+
self,
|
|
61
|
+
request: luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.SubmitTrainingJobRequest,
|
|
62
|
+
context: grpc.ServicerContext,
|
|
63
|
+
) -> luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.SubmitTrainingJobResponse:
|
|
64
|
+
"""Submits a training job for a Physics AI architecture"""
|
|
53
65
|
|
|
54
66
|
def add_PhysicsAiServiceServicer_to_server(servicer: PhysicsAiServiceServicer, server: grpc.Server) -> None: ...
|
|
@@ -24,7 +24,7 @@ from luminarycloud._proto.client import simulation_pb2 as proto_dot_client_dot_s
|
|
|
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
25
|
|
|
26
26
|
|
|
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\"\xf4\x03\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\"\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')
|
|
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
28
|
|
|
29
29
|
_CALCULATIONTYPE = DESCRIPTOR.enum_types_by_name['CalculationType']
|
|
30
30
|
CalculationType = enum_type_wrapper.EnumTypeWrapper(_CALCULATIONTYPE)
|
|
@@ -267,64 +267,64 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
267
267
|
_SIMULATIONSERVICE.methods_by_name['GetSimulationParameters']._serialized_options = b'\202\323\344\223\002!\022\037/v0/simulations/{id}/parameters'
|
|
268
268
|
_SIMULATIONSERVICE.methods_by_name['ListQueuedSimulations']._options = None
|
|
269
269
|
_SIMULATIONSERVICE.methods_by_name['ListQueuedSimulations']._serialized_options = b'\202\323\344\223\002\030\022\026/v0/queued-simulations'
|
|
270
|
-
_CALCULATIONTYPE._serialized_start=
|
|
271
|
-
_CALCULATIONTYPE._serialized_end=
|
|
272
|
-
_AVERAGINGTYPE._serialized_start=
|
|
273
|
-
_AVERAGINGTYPE._serialized_end=
|
|
270
|
+
_CALCULATIONTYPE._serialized_start=4451
|
|
271
|
+
_CALCULATIONTYPE._serialized_end=4601
|
|
272
|
+
_AVERAGINGTYPE._serialized_start=4603
|
|
273
|
+
_AVERAGINGTYPE._serialized_end=4705
|
|
274
274
|
_SIMULATION._serialized_start=396
|
|
275
|
-
_SIMULATION._serialized_end=
|
|
276
|
-
_SIMULATION_SIMULATIONSTATUS._serialized_start=
|
|
277
|
-
_SIMULATION_SIMULATIONSTATUS._serialized_end=
|
|
278
|
-
_SIMULATIONOPTIONS._serialized_start=
|
|
279
|
-
_SIMULATIONOPTIONS._serialized_end=
|
|
280
|
-
_SIMULATIONOPTIONS_GPUTYPE._serialized_start=
|
|
281
|
-
_SIMULATIONOPTIONS_GPUTYPE._serialized_end=
|
|
282
|
-
_CREATESIMULATIONREQUEST._serialized_start=
|
|
283
|
-
_CREATESIMULATIONREQUEST._serialized_end=
|
|
284
|
-
_CREATESIMULATIONRESPONSE._serialized_start=
|
|
285
|
-
_CREATESIMULATIONRESPONSE._serialized_end=
|
|
286
|
-
_GETSIMULATIONREQUEST._serialized_start=
|
|
287
|
-
_GETSIMULATIONREQUEST._serialized_end=
|
|
288
|
-
_GETSIMULATIONRESPONSE._serialized_start=
|
|
289
|
-
_GETSIMULATIONRESPONSE._serialized_end=
|
|
290
|
-
_UPDATESIMULATIONREQUEST._serialized_start=
|
|
291
|
-
_UPDATESIMULATIONREQUEST._serialized_end=
|
|
292
|
-
_UPDATESIMULATIONRESPONSE._serialized_start=
|
|
293
|
-
_UPDATESIMULATIONRESPONSE._serialized_end=
|
|
294
|
-
_LISTSIMULATIONSREQUEST._serialized_start=
|
|
295
|
-
_LISTSIMULATIONSREQUEST._serialized_end=
|
|
296
|
-
_LISTSIMULATIONSRESPONSE._serialized_start=
|
|
297
|
-
_LISTSIMULATIONSRESPONSE._serialized_end=
|
|
298
|
-
_DELETESIMULATIONREQUEST._serialized_start=
|
|
299
|
-
_DELETESIMULATIONREQUEST._serialized_end=
|
|
300
|
-
_SUSPENDSIMULATIONREQUEST._serialized_start=
|
|
301
|
-
_SUSPENDSIMULATIONREQUEST._serialized_end=
|
|
302
|
-
_GETSIMULATIONGLOBALRESIDUALSREQUEST._serialized_start=
|
|
303
|
-
_GETSIMULATIONGLOBALRESIDUALSREQUEST._serialized_end=
|
|
304
|
-
_GETSIMULATIONGLOBALRESIDUALSREQUEST_RESIDUALNORMALIZATION._serialized_start=
|
|
305
|
-
_GETSIMULATIONGLOBALRESIDUALSREQUEST_RESIDUALNORMALIZATION._serialized_end=
|
|
306
|
-
_GETSIMULATIONGLOBALRESIDUALSRESPONSE._serialized_start=
|
|
307
|
-
_GETSIMULATIONGLOBALRESIDUALSRESPONSE._serialized_end=
|
|
308
|
-
_GETSIMULATIONSURFACEQUANTITYOUTPUTREQUEST._serialized_start=
|
|
309
|
-
_GETSIMULATIONSURFACEQUANTITYOUTPUTREQUEST._serialized_end=
|
|
310
|
-
_GETSIMULATIONSURFACEQUANTITYOUTPUTRESPONSE._serialized_start=
|
|
311
|
-
_GETSIMULATIONSURFACEQUANTITYOUTPUTRESPONSE._serialized_end=
|
|
312
|
-
_GETSIMULATIONSURFACESOLUTIONREQUEST._serialized_start=
|
|
313
|
-
_GETSIMULATIONSURFACESOLUTIONREQUEST._serialized_end=
|
|
314
|
-
_GETSIMULATIONSURFACESOLUTIONRESPONSE._serialized_start=
|
|
315
|
-
_GETSIMULATIONSURFACESOLUTIONRESPONSE._serialized_end=
|
|
316
|
-
_GETSIMULATIONVOLUMESOLUTIONREQUEST._serialized_start=
|
|
317
|
-
_GETSIMULATIONVOLUMESOLUTIONREQUEST._serialized_end=
|
|
318
|
-
_GETSIMULATIONVOLUMESOLUTIONRESPONSE._serialized_start=
|
|
319
|
-
_GETSIMULATIONVOLUMESOLUTIONRESPONSE._serialized_end=
|
|
320
|
-
_GETSIMULATIONPARAMETERSREQUEST._serialized_start=
|
|
321
|
-
_GETSIMULATIONPARAMETERSREQUEST._serialized_end=
|
|
322
|
-
_SIMULATIONQUEUESTATUS._serialized_start=
|
|
323
|
-
_SIMULATIONQUEUESTATUS._serialized_end=
|
|
324
|
-
_LISTQUEUEDSIMULATIONSREQUEST._serialized_start=
|
|
325
|
-
_LISTQUEUEDSIMULATIONSREQUEST._serialized_end=
|
|
326
|
-
_LISTQUEUEDSIMULATIONSRESPONSE._serialized_start=
|
|
327
|
-
_LISTQUEUEDSIMULATIONSRESPONSE._serialized_end=
|
|
328
|
-
_SIMULATIONSERVICE._serialized_start=
|
|
329
|
-
_SIMULATIONSERVICE._serialized_end=
|
|
275
|
+
_SIMULATION._serialized_end=914
|
|
276
|
+
_SIMULATION_SIMULATIONSTATUS._serialized_start=704
|
|
277
|
+
_SIMULATION_SIMULATIONSTATUS._serialized_end=914
|
|
278
|
+
_SIMULATIONOPTIONS._serialized_start=917
|
|
279
|
+
_SIMULATIONOPTIONS._serialized_end=1149
|
|
280
|
+
_SIMULATIONOPTIONS_GPUTYPE._serialized_start=1076
|
|
281
|
+
_SIMULATIONOPTIONS_GPUTYPE._serialized_end=1149
|
|
282
|
+
_CREATESIMULATIONREQUEST._serialized_start=1152
|
|
283
|
+
_CREATESIMULATIONREQUEST._serialized_end=1520
|
|
284
|
+
_CREATESIMULATIONRESPONSE._serialized_start=1522
|
|
285
|
+
_CREATESIMULATIONRESPONSE._serialized_end=1628
|
|
286
|
+
_GETSIMULATIONREQUEST._serialized_start=1630
|
|
287
|
+
_GETSIMULATIONREQUEST._serialized_end=1664
|
|
288
|
+
_GETSIMULATIONRESPONSE._serialized_start=1666
|
|
289
|
+
_GETSIMULATIONRESPONSE._serialized_end=1769
|
|
290
|
+
_UPDATESIMULATIONREQUEST._serialized_start=1771
|
|
291
|
+
_UPDATESIMULATIONREQUEST._serialized_end=1878
|
|
292
|
+
_UPDATESIMULATIONRESPONSE._serialized_start=1880
|
|
293
|
+
_UPDATESIMULATIONRESPONSE._serialized_end=1986
|
|
294
|
+
_LISTSIMULATIONSREQUEST._serialized_start=1988
|
|
295
|
+
_LISTSIMULATIONSREQUEST._serialized_end=2032
|
|
296
|
+
_LISTSIMULATIONSRESPONSE._serialized_start=2034
|
|
297
|
+
_LISTSIMULATIONSRESPONSE._serialized_end=2140
|
|
298
|
+
_DELETESIMULATIONREQUEST._serialized_start=2142
|
|
299
|
+
_DELETESIMULATIONREQUEST._serialized_end=2179
|
|
300
|
+
_SUSPENDSIMULATIONREQUEST._serialized_start=2181
|
|
301
|
+
_SUSPENDSIMULATIONREQUEST._serialized_end=2219
|
|
302
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST._serialized_start=2222
|
|
303
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST._serialized_end=2557
|
|
304
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST_RESIDUALNORMALIZATION._serialized_start=2414
|
|
305
|
+
_GETSIMULATIONGLOBALRESIDUALSREQUEST_RESIDUALNORMALIZATION._serialized_end=2551
|
|
306
|
+
_GETSIMULATIONGLOBALRESIDUALSRESPONSE._serialized_start=2559
|
|
307
|
+
_GETSIMULATIONGLOBALRESIDUALSRESPONSE._serialized_end=2665
|
|
308
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTREQUEST._serialized_start=2668
|
|
309
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTREQUEST._serialized_end=3370
|
|
310
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTRESPONSE._serialized_start=3372
|
|
311
|
+
_GETSIMULATIONSURFACEQUANTITYOUTPUTRESPONSE._serialized_end=3484
|
|
312
|
+
_GETSIMULATIONSURFACESOLUTIONREQUEST._serialized_start=3486
|
|
313
|
+
_GETSIMULATIONSURFACESOLUTIONREQUEST._serialized_end=3560
|
|
314
|
+
_GETSIMULATIONSURFACESOLUTIONRESPONSE._serialized_start=3562
|
|
315
|
+
_GETSIMULATIONSURFACESOLUTIONRESPONSE._serialized_end=3670
|
|
316
|
+
_GETSIMULATIONVOLUMESOLUTIONREQUEST._serialized_start=3672
|
|
317
|
+
_GETSIMULATIONVOLUMESOLUTIONREQUEST._serialized_end=3771
|
|
318
|
+
_GETSIMULATIONVOLUMESOLUTIONRESPONSE._serialized_start=3773
|
|
319
|
+
_GETSIMULATIONVOLUMESOLUTIONRESPONSE._serialized_end=3880
|
|
320
|
+
_GETSIMULATIONPARAMETERSREQUEST._serialized_start=3882
|
|
321
|
+
_GETSIMULATIONPARAMETERSREQUEST._serialized_end=3926
|
|
322
|
+
_SIMULATIONQUEUESTATUS._serialized_start=3929
|
|
323
|
+
_SIMULATIONQUEUESTATUS._serialized_end=4166
|
|
324
|
+
_LISTQUEUEDSIMULATIONSREQUEST._serialized_start=4168
|
|
325
|
+
_LISTQUEUEDSIMULATIONSREQUEST._serialized_end=4276
|
|
326
|
+
_LISTQUEUEDSIMULATIONSRESPONSE._serialized_start=4279
|
|
327
|
+
_LISTQUEUEDSIMULATIONSRESPONSE._serialized_end=4448
|
|
328
|
+
_SIMULATIONSERVICE._serialized_start=4708
|
|
329
|
+
_SIMULATIONSERVICE._serialized_end=7277
|
|
330
330
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -127,6 +127,7 @@ class Simulation(google.protobuf.message.Message):
|
|
|
127
127
|
MESH_ID_FIELD_NUMBER: builtins.int
|
|
128
128
|
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
129
129
|
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
130
|
+
DOE_NAME_FIELD_NUMBER: builtins.int
|
|
130
131
|
id: builtins.str
|
|
131
132
|
"""Required. The unique identifier for the simulation."""
|
|
132
133
|
name: builtins.str
|
|
@@ -147,6 +148,8 @@ class Simulation(google.protobuf.message.Message):
|
|
|
147
148
|
"""User specified description for this simulation."""
|
|
148
149
|
project_id: builtins.str
|
|
149
150
|
"""Output only. The ID of the project containing this simulation."""
|
|
151
|
+
doe_name: builtins.str
|
|
152
|
+
"""Name of the DOE that created this simulation."""
|
|
150
153
|
def __init__(
|
|
151
154
|
self,
|
|
152
155
|
*,
|
|
@@ -158,9 +161,10 @@ class Simulation(google.protobuf.message.Message):
|
|
|
158
161
|
mesh_id: builtins.str = ...,
|
|
159
162
|
description: builtins.str = ...,
|
|
160
163
|
project_id: builtins.str = ...,
|
|
164
|
+
doe_name: builtins.str = ...,
|
|
161
165
|
) -> None: ...
|
|
162
166
|
def HasField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "update_time", b"update_time"]) -> builtins.bool: ...
|
|
163
|
-
def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "description", b"description", "id", b"id", "mesh_id", b"mesh_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time"]) -> None: ...
|
|
167
|
+
def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "description", b"description", "doe_name", b"doe_name", "id", b"id", "mesh_id", b"mesh_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time"]) -> None: ...
|
|
164
168
|
|
|
165
169
|
global___Simulation = Simulation
|
|
166
170
|
|