viam-sdk 0.25.2__py3-none-linux_armv7l.whl → 0.62.0__py3-none-linux_armv7l.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.
- viam/app/_logs.py +3 -6
- viam/app/app_client.py +606 -262
- viam/app/billing_client.py +60 -18
- viam/app/data_client.py +1086 -315
- viam/app/ml_training_client.py +51 -48
- viam/app/provisioning_client.py +3 -5
- viam/app/viam_client.py +105 -11
- viam/components/arm/__init__.py +1 -25
- viam/components/arm/arm.py +21 -22
- viam/components/arm/client.py +27 -30
- viam/components/arm/service.py +3 -3
- viam/components/audio_in/__init__.py +24 -0
- viam/components/audio_in/audio_in.py +74 -0
- viam/components/audio_in/client.py +76 -0
- viam/components/audio_in/service.py +83 -0
- viam/components/audio_input/__init__.py +1 -1
- viam/components/audio_input/audio_input.py +4 -3
- viam/components/audio_input/client.py +19 -8
- viam/components/audio_input/service.py +10 -0
- viam/components/audio_out/__init__.py +21 -0
- viam/components/audio_out/audio_out.py +72 -0
- viam/components/audio_out/client.py +67 -0
- viam/components/audio_out/service.py +63 -0
- viam/components/base/__init__.py +2 -10
- viam/components/base/base.py +20 -20
- viam/components/base/client.py +27 -30
- viam/components/board/__init__.py +2 -25
- viam/components/board/board.py +39 -77
- viam/components/board/client.py +39 -73
- viam/components/button/__init__.py +10 -0
- viam/components/button/button.py +41 -0
- viam/components/button/client.py +52 -0
- viam/components/button/service.py +46 -0
- viam/components/camera/__init__.py +1 -1
- viam/components/camera/camera.py +31 -22
- viam/components/camera/client.py +30 -20
- viam/components/camera/service.py +14 -12
- viam/components/component_base.py +10 -7
- viam/components/encoder/__init__.py +1 -1
- viam/components/encoder/client.py +15 -16
- viam/components/encoder/encoder.py +9 -9
- viam/components/gantry/__init__.py +1 -13
- viam/components/gantry/client.py +41 -28
- viam/components/gantry/gantry.py +48 -17
- viam/components/gantry/service.py +21 -5
- viam/components/generic/__init__.py +1 -1
- viam/components/generic/client.py +11 -7
- viam/components/generic/generic.py +3 -3
- viam/components/gripper/__init__.py +3 -12
- viam/components/gripper/client.py +43 -20
- viam/components/gripper/gripper.py +87 -12
- viam/components/gripper/service.py +32 -3
- viam/components/input/__init__.py +1 -14
- viam/components/input/client.py +22 -23
- viam/components/input/input.py +18 -12
- viam/components/motor/__init__.py +1 -21
- viam/components/motor/client.py +36 -42
- viam/components/motor/motor.py +24 -24
- viam/components/movement_sensor/__init__.py +1 -1
- viam/components/movement_sensor/client.py +33 -40
- viam/components/movement_sensor/movement_sensor.py +12 -12
- viam/components/pose_tracker/__init__.py +1 -1
- viam/components/pose_tracker/client.py +9 -8
- viam/components/pose_tracker/pose_tracker.py +2 -2
- viam/components/power_sensor/__init__.py +1 -1
- viam/components/power_sensor/client.py +15 -18
- viam/components/power_sensor/power_sensor.py +12 -12
- viam/components/sensor/__init__.py +1 -1
- viam/components/sensor/client.py +9 -8
- viam/components/sensor/sensor.py +5 -5
- viam/components/servo/__init__.py +1 -13
- viam/components/servo/client.py +18 -18
- viam/components/servo/servo.py +12 -12
- viam/components/switch/__init__.py +10 -0
- viam/components/switch/client.py +83 -0
- viam/components/switch/service.py +72 -0
- viam/components/switch/switch.py +95 -0
- viam/gen/app/agent/v1/agent_pb2.py +40 -29
- viam/gen/app/agent/v1/agent_pb2.pyi +73 -11
- viam/gen/app/cloudslam/v1/cloud_slam_pb2.py +45 -42
- viam/gen/app/data/v1/data_grpc.py +98 -2
- viam/gen/app/data/v1/data_pb2.py +238 -119
- viam/gen/app/data/v1/data_pb2.pyi +804 -34
- viam/gen/app/datapipelines/v1/data_pipelines_grpc.py +84 -0
- viam/gen/app/datapipelines/v1/data_pipelines_pb2.py +57 -0
- viam/gen/app/datapipelines/v1/data_pipelines_pb2.pyi +387 -0
- viam/gen/app/dataset/v1/dataset_grpc.py +10 -2
- viam/gen/app/dataset/v1/dataset_pb2.py +38 -31
- viam/gen/app/dataset/v1/dataset_pb2.pyi +36 -1
- viam/gen/app/datasync/v1/data_sync_grpc.py +1 -1
- viam/gen/app/datasync/v1/data_sync_pb2.py +61 -51
- viam/gen/app/datasync/v1/data_sync_pb2.pyi +52 -12
- viam/gen/app/mlinference/__init__.py +0 -0
- viam/gen/app/mlinference/v1/__init__.py +0 -0
- viam/gen/app/mlinference/v1/ml_inference_grpc.py +28 -0
- viam/gen/app/mlinference/v1/ml_inference_pb2.py +23 -0
- viam/gen/app/mlinference/v1/ml_inference_pb2.pyi +63 -0
- viam/gen/app/mltraining/v1/ml_training_grpc.py +18 -2
- viam/gen/app/mltraining/v1/ml_training_pb2.py +134 -101
- viam/gen/app/mltraining/v1/ml_training_pb2.pyi +193 -7
- viam/gen/app/packages/v1/packages_pb2.py +43 -40
- viam/gen/app/v1/app_grpc.py +290 -2
- viam/gen/app/v1/app_pb2.py +670 -453
- viam/gen/app/v1/app_pb2.pyi +3133 -947
- viam/gen/app/v1/billing_grpc.py +34 -2
- viam/gen/app/v1/billing_pb2.py +94 -35
- viam/gen/app/v1/billing_pb2.pyi +314 -61
- viam/gen/app/v1/end_user_pb2.py +50 -29
- viam/gen/app/v1/robot_pb2.py +120 -111
- viam/gen/app/v1/robot_pb2.pyi +137 -15
- viam/gen/common/v1/common_pb2.py +86 -66
- viam/gen/common/v1/common_pb2.pyi +184 -8
- viam/gen/component/arm/v1/arm_grpc.py +18 -2
- viam/gen/component/arm/v1/arm_pb2.py +68 -55
- viam/gen/component/arm/v1/arm_pb2.pyi +73 -3
- viam/gen/component/audioin/__init__.py +0 -0
- viam/gen/component/audioin/v1/__init__.py +0 -0
- viam/gen/component/audioin/v1/audioin_grpc.py +54 -0
- viam/gen/component/audioin/v1/audioin_pb2.py +34 -0
- viam/gen/component/audioin/v1/audioin_pb2.pyi +94 -0
- viam/gen/component/audioinput/v1/audioinput_pb2.py +35 -32
- viam/gen/component/audioout/__init__.py +0 -0
- viam/gen/component/audioout/v1/__init__.py +0 -0
- viam/gen/component/audioout/v1/audioout_grpc.py +54 -0
- viam/gen/component/audioout/v1/audioout_pb2.py +32 -0
- viam/gen/component/audioout/v1/audioout_pb2.pyi +47 -0
- viam/gen/component/base/v1/base_pb2.py +57 -54
- viam/gen/component/board/v1/board_pb2.py +93 -90
- viam/gen/component/button/__init__.py +0 -0
- viam/gen/component/button/v1/__init__.py +0 -0
- viam/gen/component/button/v1/button_grpc.py +38 -0
- viam/gen/component/button/v1/button_pb2.py +28 -0
- viam/gen/component/button/v1/button_pb2.pyi +39 -0
- viam/gen/component/camera/v1/camera_pb2.py +58 -55
- viam/gen/component/camera/v1/camera_pb2.pyi +31 -7
- viam/gen/component/encoder/v1/encoder_pb2.py +35 -32
- viam/gen/component/gantry/v1/gantry_grpc.py +9 -1
- viam/gen/component/gantry/v1/gantry_pb2.py +56 -51
- viam/gen/component/generic/v1/generic_pb2.py +15 -12
- viam/gen/component/gripper/v1/gripper_grpc.py +18 -2
- viam/gen/component/gripper/v1/gripper_pb2.py +48 -37
- viam/gen/component/gripper/v1/gripper_pb2.pyi +43 -1
- viam/gen/component/inputcontroller/v1/input_controller_pb2.py +45 -42
- viam/gen/component/motor/v1/motor_pb2.py +77 -74
- viam/gen/component/movementsensor/v1/movementsensor_pb2.py +69 -66
- viam/gen/component/posetracker/v1/pose_tracker_pb2.py +25 -22
- viam/gen/component/powersensor/v1/powersensor_pb2.py +33 -30
- viam/gen/component/sensor/v1/sensor_pb2.py +17 -14
- viam/gen/component/servo/v1/servo_pb2.py +41 -38
- viam/gen/component/switch/__init__.py +0 -0
- viam/gen/component/switch/v1/__init__.py +0 -0
- viam/gen/component/switch/v1/switch_grpc.py +54 -0
- viam/gen/component/switch/v1/switch_pb2.py +40 -0
- viam/gen/component/switch/v1/switch_pb2.pyi +116 -0
- viam/gen/component/testecho/v1/testecho_pb2.py +29 -26
- viam/gen/module/v1/module_pb2.py +36 -33
- viam/gen/module/v1/module_pb2.pyi +7 -2
- viam/gen/proto/rpc/examples/echo/v1/echo_pb2.py +26 -23
- viam/gen/proto/rpc/examples/echoresource/v1/echoresource_pb2.py +23 -20
- viam/gen/proto/rpc/v1/auth_pb2.py +27 -24
- viam/gen/proto/rpc/webrtc/v1/grpc_pb2.py +35 -32
- viam/gen/proto/rpc/webrtc/v1/signaling_pb2.py +62 -57
- viam/gen/proto/rpc/webrtc/v1/signaling_pb2.pyi +18 -4
- viam/gen/provisioning/v1/provisioning_grpc.py +10 -2
- viam/gen/provisioning/v1/provisioning_pb2.py +38 -31
- viam/gen/provisioning/v1/provisioning_pb2.pyi +20 -2
- viam/gen/robot/v1/robot_grpc.py +61 -29
- viam/gen/robot/v1/robot_pb2.py +186 -155
- viam/gen/robot/v1/robot_pb2.pyi +278 -59
- viam/gen/service/datamanager/v1/data_manager_grpc.py +11 -2
- viam/gen/service/datamanager/v1/data_manager_pb2.py +27 -17
- viam/gen/service/datamanager/v1/data_manager_pb2.pyi +47 -1
- viam/gen/service/discovery/__init__.py +0 -0
- viam/gen/service/discovery/v1/__init__.py +0 -0
- viam/gen/service/discovery/v1/discovery_grpc.py +39 -0
- viam/gen/service/discovery/v1/discovery_pb2.py +29 -0
- viam/gen/service/discovery/v1/discovery_pb2.pyi +51 -0
- viam/gen/service/generic/v1/generic_pb2.py +13 -10
- viam/gen/service/mlmodel/v1/mlmodel_pb2.py +75 -72
- viam/gen/service/motion/v1/motion_pb2.py +118 -85
- viam/gen/service/motion/v1/motion_pb2.pyi +130 -68
- viam/gen/service/navigation/v1/navigation_pb2.py +75 -72
- viam/gen/service/sensors/v1/sensors_pb2.py +59 -56
- viam/gen/service/shell/v1/shell_pb2.py +35 -32
- viam/gen/service/slam/v1/slam_pb2.py +43 -40
- viam/gen/service/slam/v1/slam_pb2.pyi +1 -1
- viam/gen/service/video/__init__.py +0 -0
- viam/gen/service/video/v1/__init__.py +0 -0
- viam/gen/service/video/v1/video_grpc.py +39 -0
- viam/gen/service/video/v1/video_pb2.py +29 -0
- viam/gen/service/video/v1/video_pb2.pyi +72 -0
- viam/gen/service/vision/v1/vision_pb2.py +60 -57
- viam/gen/service/vision/v1/vision_pb2.pyi +28 -3
- viam/gen/service/worldstatestore/__init__.py +0 -0
- viam/gen/service/worldstatestore/v1/__init__.py +0 -0
- viam/gen/service/worldstatestore/v1/world_state_store_grpc.py +55 -0
- viam/gen/service/worldstatestore/v1/world_state_store_pb2.py +39 -0
- viam/gen/service/worldstatestore/v1/world_state_store_pb2.pyi +171 -0
- viam/gen/stream/v1/stream_grpc.py +17 -1
- viam/gen/stream/v1/stream_pb2.py +34 -21
- viam/gen/stream/v1/stream_pb2.pyi +79 -1
- viam/gen/tagger/v1/tagger_pb2.py +9 -8
- viam/logging.py +77 -18
- viam/media/audio.py +28 -0
- viam/media/utils/pil/__init__.py +7 -3
- viam/media/video.py +80 -17
- viam/module/module.py +111 -38
- viam/module/resource_data_consumer.py +41 -0
- viam/module/service.py +9 -1
- viam/module/types.py +2 -4
- viam/proto/app/__init__.py +199 -0
- viam/proto/app/agent/__init__.py +5 -2
- viam/proto/app/billing.py +31 -4
- viam/proto/app/cloudslam/__init__.py +1 -0
- viam/proto/app/data/__init__.py +63 -0
- viam/proto/app/datapipelines/__init__.py +56 -0
- viam/proto/app/dataset/__init__.py +5 -0
- viam/proto/app/datasync/__init__.py +3 -0
- viam/proto/app/end_user.py +1 -0
- viam/proto/app/mlinference/__init__.py +15 -0
- viam/proto/app/mltraining/__init__.py +13 -0
- viam/proto/app/packages/__init__.py +1 -0
- viam/proto/app/robot.py +7 -0
- viam/proto/common/__init__.py +15 -0
- viam/proto/component/arm/__init__.py +7 -0
- viam/proto/component/audioin/__init__.py +16 -0
- viam/proto/component/audioinput/__init__.py +1 -0
- viam/proto/component/audioout/__init__.py +15 -0
- viam/proto/component/base/__init__.py +1 -0
- viam/proto/component/board/__init__.py +1 -0
- viam/proto/component/button/__init__.py +15 -0
- viam/proto/component/camera/__init__.py +1 -0
- viam/proto/component/encoder/__init__.py +1 -0
- viam/proto/component/gantry/__init__.py +1 -0
- viam/proto/component/generic/__init__.py +1 -0
- viam/proto/component/gripper/__init__.py +5 -0
- viam/proto/component/inputcontroller/__init__.py +1 -0
- viam/proto/component/motor/__init__.py +1 -0
- viam/proto/component/movementsensor/__init__.py +1 -0
- viam/proto/component/posetracker/__init__.py +1 -0
- viam/proto/component/powersensor/__init__.py +1 -0
- viam/proto/component/sensor/__init__.py +1 -0
- viam/proto/component/servo/__init__.py +1 -0
- viam/proto/component/switch/__init__.py +26 -0
- viam/proto/component/testecho/__init__.py +1 -0
- viam/proto/module/__init__.py +1 -0
- viam/proto/provisioning/__init__.py +5 -0
- viam/proto/robot/__init__.py +29 -8
- viam/proto/rpc/auth.py +1 -0
- viam/proto/rpc/examples/echo/__init__.py +1 -0
- viam/proto/rpc/examples/echoresource/__init__.py +1 -0
- viam/proto/rpc/webrtc/grpc.py +1 -0
- viam/proto/rpc/webrtc/signaling.py +3 -0
- viam/proto/service/datamanager/__init__.py +9 -1
- viam/proto/service/discovery/__init__.py +15 -0
- viam/proto/service/generic/__init__.py +1 -0
- viam/proto/service/mlmodel/__init__.py +1 -0
- viam/proto/service/motion/__init__.py +3 -0
- viam/proto/service/navigation/__init__.py +1 -0
- viam/proto/service/sensors/__init__.py +1 -0
- viam/proto/service/shell/__init__.py +1 -0
- viam/proto/service/slam/__init__.py +1 -0
- viam/proto/service/video/__init__.py +15 -0
- viam/proto/service/vision/__init__.py +1 -0
- viam/proto/service/worldstatestore/__init__.py +32 -0
- viam/proto/stream/__init__.py +11 -0
- viam/py.typed +0 -0
- viam/resource/base.py +12 -8
- viam/resource/easy_resource.py +24 -13
- viam/resource/manager.py +6 -5
- viam/resource/registry.py +39 -51
- viam/resource/rpc_client_base.py +33 -1
- viam/resource/types.py +13 -14
- viam/robot/client.py +190 -122
- viam/robot/service.py +2 -50
- viam/rpc/dial.py +54 -4
- viam/rpc/libviam_rust_utils.so +0 -0
- viam/rpc/server.py +25 -11
- viam/rpc/types.py +2 -4
- viam/services/discovery/__init__.py +12 -0
- viam/services/discovery/client.py +55 -0
- viam/services/discovery/discovery.py +52 -0
- viam/services/discovery/service.py +43 -0
- viam/services/generic/__init__.py +1 -1
- viam/services/generic/client.py +8 -5
- viam/services/generic/generic.py +2 -2
- viam/services/mlmodel/__init__.py +1 -1
- viam/services/mlmodel/client.py +17 -7
- viam/services/mlmodel/mlmodel.py +23 -12
- viam/services/mlmodel/service.py +5 -2
- viam/services/mlmodel/utils.py +11 -1
- viam/services/motion/__init__.py +2 -2
- viam/services/motion/client.py +32 -32
- viam/services/motion/motion.py +66 -62
- viam/services/navigation/__init__.py +1 -1
- viam/services/navigation/client.py +30 -20
- viam/services/navigation/navigation.py +23 -23
- viam/services/service_base.py +13 -9
- viam/services/service_client_base.py +3 -3
- viam/services/slam/__init__.py +1 -1
- viam/services/slam/client.py +15 -10
- viam/services/slam/slam.py +11 -11
- viam/services/vision/__init__.py +1 -1
- viam/services/vision/client.py +31 -24
- viam/services/vision/service.py +8 -8
- viam/services/vision/vision.py +36 -53
- viam/services/worldstatestore/__init__.py +18 -0
- viam/services/worldstatestore/client.py +94 -0
- viam/services/worldstatestore/service.py +55 -0
- viam/services/worldstatestore/worldstatestore.py +90 -0
- viam/sessions_client.py +115 -46
- viam/streams.py +3 -6
- viam/utils.py +44 -14
- viam/version_metadata.py +4 -0
- {viam_sdk-0.25.2.dist-info → viam_sdk-0.62.0.dist-info}/METADATA +27 -28
- viam_sdk-0.62.0.dist-info/RECORD +514 -0
- {viam_sdk-0.25.2.dist-info → viam_sdk-0.62.0.dist-info}/WHEEL +1 -1
- viam/gen/proto/rpc/examples/fileupload/v1/fileupload_grpc.py +0 -27
- viam/gen/proto/rpc/examples/fileupload/v1/fileupload_pb2.py +0 -18
- viam/gen/proto/rpc/examples/fileupload/v1/fileupload_pb2.pyi +0 -45
- viam/proto/rpc/examples/fileupload/__init__.py +0 -18
- viam/services/sensors/__init__.py +0 -5
- viam/services/sensors/client.py +0 -65
- viam_sdk-0.25.2.dist-info/LICENSE +0 -202
- viam_sdk-0.25.2.dist-info/RECORD +0 -442
- /viam/gen/{proto/rpc/examples/fileupload → app/datapipelines}/__init__.py +0 -0
- /viam/gen/{proto/rpc/examples/fileupload → app/datapipelines}/v1/__init__.py +0 -0
- /LICENSE → /viam_sdk-0.62.0.dist-info/licenses/LICENSE +0 -0
|
@@ -1,109 +1,142 @@
|
|
|
1
1
|
"""Generated protocol buffer code."""
|
|
2
|
-
from google.protobuf.internal import builder as _builder
|
|
3
2
|
from google.protobuf import descriptor as _descriptor
|
|
4
3
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
|
+
from google.protobuf.internal import builder as _builder
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'app/mltraining/v1/ml_training.proto')
|
|
6
8
|
_sym_db = _symbol_database.Default()
|
|
7
9
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
8
10
|
from google.rpc import status_pb2 as google_dot_rpc_dot_status__pb2
|
|
9
11
|
from ....tagger.v1 import tagger_pb2 as tagger_dot_v1_dot_tagger__pb2
|
|
10
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#app/mltraining/v1/ml_training.proto\x12\x16viam.app.mltraining.v1\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\x1a\x16tagger/v1/tagger.proto"\
|
|
11
|
-
|
|
12
|
-
_builder.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
DESCRIPTOR.
|
|
16
|
-
|
|
17
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['dataset_id'].
|
|
18
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['
|
|
19
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['organization_id'].
|
|
20
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['
|
|
21
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['model_name'].
|
|
22
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['
|
|
23
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['model_version'].
|
|
24
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['
|
|
25
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['model_type'].
|
|
26
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['
|
|
27
|
-
_SUBMITTRAININGJOBREQUEST.fields_by_name['
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
_SUBMITCUSTOMTRAININGJOBREQUEST.fields_by_name['
|
|
34
|
-
_SUBMITCUSTOMTRAININGJOBREQUEST.fields_by_name['
|
|
35
|
-
_SUBMITCUSTOMTRAININGJOBREQUEST.fields_by_name['
|
|
36
|
-
_SUBMITCUSTOMTRAININGJOBREQUEST.fields_by_name['
|
|
37
|
-
_SUBMITCUSTOMTRAININGJOBREQUEST.fields_by_name['
|
|
38
|
-
_SUBMITCUSTOMTRAININGJOBREQUEST.fields_by_name['
|
|
39
|
-
_SUBMITCUSTOMTRAININGJOBREQUEST.fields_by_name['
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
48
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
49
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
50
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
51
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
52
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
53
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
54
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
55
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
56
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
57
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
58
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
59
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
60
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
61
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
62
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
63
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
64
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
65
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
66
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
67
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
68
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
69
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
70
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
71
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
72
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
73
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
74
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
75
|
-
_TRAININGJOBMETADATA.fields_by_name['
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
12
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#app/mltraining/v1/ml_training.proto\x12\x16viam.app.mltraining.v1\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\x1a\x16tagger/v1/tagger.proto"\x90\x05\n\x18SubmitTrainingJobRequest\x12G\n\ndataset_id\x18\x07 \x01(\tB(\x9a\x84\x9e\x03#bson:"dataset_id" json:"dataset_id"R\tdatasetId\x12[\n\x0forganization_id\x18\x02 \x01(\tB2\x9a\x84\x9e\x03-bson:"organization_id" json:"organization_id"R\x0eorganizationId\x12G\n\nmodel_name\x18\x03 \x01(\tB(\x9a\x84\x9e\x03#bson:"model_name" json:"model_name"R\tmodelName\x12S\n\rmodel_version\x18\x04 \x01(\tB.\x9a\x84\x9e\x03)bson:"model_version" json:"model_version"R\x0cmodelVersion\x12j\n\nmodel_type\x18\x05 \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeB(\x9a\x84\x9e\x03#bson:"model_type" json:"model_type"R\tmodelType\x12\x83\x01\n\x0fmodel_framework\x18\x08 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkB2\x9a\x84\x9e\x03-bson:"model_framework" json:"model_framework"R\x0emodelFramework\x120\n\x04tags\x18\x06 \x03(\tB\x1c\x9a\x84\x9e\x03\x17bson:"tags" json:"tags"R\x04tagsJ\x04\x08\x01\x10\x02R\x06filter"+\n\x19SubmitTrainingJobResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x88\x06\n\x1eSubmitCustomTrainingJobRequest\x12G\n\ndataset_id\x18\x01 \x01(\tB(\x9a\x84\x9e\x03#bson:"dataset_id" json:"dataset_id"R\tdatasetId\x12^\n\x10registry_item_id\x18\x02 \x01(\tB4\x9a\x84\x9e\x03/bson:"registry_item_id" json:"registry_item_id"R\x0eregistryItemId\x12r\n\x15registry_item_version\x18\x06 \x01(\tB>\x9a\x84\x9e\x039bson:"registry_item_version" json:"registry_item_version"R\x13registryItemVersion\x12[\n\x0forganization_id\x18\x03 \x01(\tB2\x9a\x84\x9e\x03-bson:"organization_id" json:"organization_id"R\x0eorganizationId\x12G\n\nmodel_name\x18\x04 \x01(\tB(\x9a\x84\x9e\x03#bson:"model_name" json:"model_name"R\tmodelName\x12S\n\rmodel_version\x18\x05 \x01(\tB.\x9a\x84\x9e\x03)bson:"model_version" json:"model_version"R\x0cmodelVersion\x12c\n\targuments\x18\x07 \x03(\x0b2E.viam.app.mltraining.v1.SubmitCustomTrainingJobRequest.ArgumentsEntryR\targuments\x12+\n\x11container_version\x18\x08 \x01(\tR\x10containerVersion\x1a<\n\x0eArgumentsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01"1\n\x1fSubmitCustomTrainingJobResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\'\n\x15GetTrainingJobRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"a\n\x16GetTrainingJobResponse\x12G\n\x08metadata\x18\x01 \x01(\x0b2+.viam.app.mltraining.v1.TrainingJobMetadataR\x08metadata"\x82\x01\n\x17ListTrainingJobsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12>\n\x06status\x18\x02 \x01(\x0e2&.viam.app.mltraining.v1.TrainingStatusR\x06status"[\n\x18ListTrainingJobsResponse\x12?\n\x04jobs\x18\x01 \x03(\x0b2+.viam.app.mltraining.v1.TrainingJobMetadataR\x04jobs"\x8c\x10\n\x13TrainingJobMetadata\x123\n\x02id\x18\x07 \x01(\tB#\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"R\x02id\x12G\n\ndataset_id\x18\x0b \x01(\tB(\x9a\x84\x9e\x03#bson:"dataset_id" json:"dataset_id"R\tdatasetId\x12[\n\x0forganization_id\x18\x0c \x01(\tB2\x9a\x84\x9e\x03-bson:"organization_id" json:"organization_id"R\x0eorganizationId\x12G\n\nmodel_name\x18\r \x01(\tB(\x9a\x84\x9e\x03#bson:"model_name" json:"model_name"R\tmodelName\x12S\n\rmodel_version\x18\x0e \x01(\tB.\x9a\x84\x9e\x03)bson:"model_version" json:"model_version"R\x0cmodelVersion\x12j\n\nmodel_type\x18\x0f \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeB(\x9a\x84\x9e\x03#bson:"model_type" json:"model_type"R\tmodelType\x12\x83\x01\n\x0fmodel_framework\x18\x11 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkB2\x9a\x84\x9e\x03-bson:"model_framework" json:"model_framework"R\x0emodelFramework\x12R\n\ris_custom_job\x18\x12 \x01(\x08B.\x9a\x84\x9e\x03)bson:"is_custom_job" json:"is_custom_job"R\x0bisCustomJob\x12^\n\x10registry_item_id\x18\x13 \x01(\tB4\x9a\x84\x9e\x03/bson:"registry_item_id" json:"registry_item_id"R\x0eregistryItemId\x12r\n\x15registry_item_version\x18\x14 \x01(\tB>\x9a\x84\x9e\x039bson:"registry_item_version" json:"registry_item_version"R\x13registryItemVersion\x12`\n\x06status\x18\x02 \x01(\x0e2&.viam.app.mltraining.v1.TrainingStatusB \x9a\x84\x9e\x03\x1bbson:"status" json:"status"R\x06status\x12c\n\x0cerror_status\x18\x08 \x01(\x0b2\x12.google.rpc.StatusB,\x9a\x84\x9e\x03\'bson:"error_status" json:"error_status"R\x0berrorStatus\x12c\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampB(\x9a\x84\x9e\x03#bson:"created_on" json:"created_on"R\tcreatedOn\x12o\n\rlast_modified\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampB.\x9a\x84\x9e\x03)bson:"last_modified" json:"last_modified"R\x0clastModified\x12{\n\x10training_started\x18\t \x01(\x0b2\x1a.google.protobuf.TimestampB4\x9a\x84\x9e\x03/bson:"training_started" json:"training_started"R\x0ftrainingStarted\x12s\n\x0etraining_ended\x18\n \x01(\x0b2\x1a.google.protobuf.TimestampB0\x9a\x84\x9e\x03+bson:"training_ended" json:"training_ended"R\rtrainingEnded\x12Z\n\x0fsynced_model_id\x18\x05 \x01(\tB2\x9a\x84\x9e\x03-bson:"synced_model_id" json:"synced_model_id"R\rsyncedModelId\x120\n\x04tags\x18\x10 \x03(\tB\x1c\x9a\x84\x9e\x03\x17bson:"tags" json:"tags"R\x04tags\x12\x80\x01\n\targuments\x18\x15 \x03(\x0b2:.viam.app.mltraining.v1.TrainingJobMetadata.ArgumentsEntryB&\x9a\x84\x9e\x03!bson:"arguments" json:"arguments"R\targuments\x12c\n\x11container_version\x18\x16 \x01(\tB6\x9a\x84\x9e\x031bson:"container_version" json:"container_version"R\x10containerVersion\x1a<\n\x0eArgumentsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01J\x04\x08\x01\x10\x02J\x04\x08\x06\x10\x07R\x07requestR\nuser_email"*\n\x18CancelTrainingJobRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x1b\n\x19CancelTrainingJobResponse"3\n!DeleteCompletedTrainingJobRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"$\n"DeleteCompletedTrainingJobResponse"u\n\x13TrainingJobLogEntry\x12\x14\n\x05level\x18\x01 \x01(\tR\x05level\x12.\n\x04time\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\x12\x18\n\x07message\x18\x03 \x01(\tR\x07message"^\n\x19GetTrainingJobLogsRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12"\n\npage_token\x18\x02 \x01(\tH\x00R\tpageToken\x88\x01\x01B\r\n\x0b_page_token"\x85\x01\n\x1aGetTrainingJobLogsResponse\x12?\n\x04logs\x18\x01 \x03(\x0b2+.viam.app.mltraining.v1.TrainingJobLogEntryR\x04logs\x12&\n\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken" \n\x1eListSupportedContainersRequest"\xf5\x01\n\x1fListSupportedContainersResponse\x12n\n\rcontainer_map\x18\x01 \x03(\x0b2I.viam.app.mltraining.v1.ListSupportedContainersResponse.ContainerMapEntryR\x0ccontainerMap\x1ab\n\x11ContainerMapEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x127\n\x05value\x18\x02 \x01(\x0b2!.viam.app.mltraining.v1.ContainerR\x05value:\x028\x01"\x9d\x01\n\tContainer\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x10\n\x03uri\x18\x02 \x01(\tR\x03uri\x12\x1c\n\tframework\x18\x03 \x01(\tR\tframework\x12 \n\x0bdescription\x18\x04 \x01(\tR\x0bdescription\x12,\n\x03eol\x18\x05 \x01(\x0b2\x1a.google.protobuf.TimestampR\x03eol*\x9f\x01\n\tModelType\x12\x1a\n\x16MODEL_TYPE_UNSPECIFIED\x10\x00\x12*\n&MODEL_TYPE_SINGLE_LABEL_CLASSIFICATION\x10\x01\x12)\n%MODEL_TYPE_MULTI_LABEL_CLASSIFICATION\x10\x02\x12\x1f\n\x1bMODEL_TYPE_OBJECT_DETECTION\x10\x03*\xa4\x01\n\x0eModelFramework\x12\x1f\n\x1bMODEL_FRAMEWORK_UNSPECIFIED\x10\x00\x12\x1a\n\x16MODEL_FRAMEWORK_TFLITE\x10\x01\x12\x1e\n\x1aMODEL_FRAMEWORK_TENSORFLOW\x10\x02\x12\x1b\n\x17MODEL_FRAMEWORK_PYTORCH\x10\x03\x12\x18\n\x14MODEL_FRAMEWORK_ONNX\x10\x04*\xe7\x01\n\x0eTrainingStatus\x12\x1f\n\x1bTRAINING_STATUS_UNSPECIFIED\x10\x00\x12\x1b\n\x17TRAINING_STATUS_PENDING\x10\x01\x12\x1f\n\x1bTRAINING_STATUS_IN_PROGRESS\x10\x02\x12\x1d\n\x19TRAINING_STATUS_COMPLETED\x10\x03\x12\x1a\n\x16TRAINING_STATUS_FAILED\x10\x04\x12\x1c\n\x18TRAINING_STATUS_CANCELED\x10\x05\x12\x1d\n\x19TRAINING_STATUS_CANCELING\x10\x062\x9c\x08\n\x11MLTrainingService\x12x\n\x11SubmitTrainingJob\x120.viam.app.mltraining.v1.SubmitTrainingJobRequest\x1a1.viam.app.mltraining.v1.SubmitTrainingJobResponse\x12\x8a\x01\n\x17SubmitCustomTrainingJob\x126.viam.app.mltraining.v1.SubmitCustomTrainingJobRequest\x1a7.viam.app.mltraining.v1.SubmitCustomTrainingJobResponse\x12o\n\x0eGetTrainingJob\x12-.viam.app.mltraining.v1.GetTrainingJobRequest\x1a..viam.app.mltraining.v1.GetTrainingJobResponse\x12u\n\x10ListTrainingJobs\x12/.viam.app.mltraining.v1.ListTrainingJobsRequest\x1a0.viam.app.mltraining.v1.ListTrainingJobsResponse\x12x\n\x11CancelTrainingJob\x120.viam.app.mltraining.v1.CancelTrainingJobRequest\x1a1.viam.app.mltraining.v1.CancelTrainingJobResponse\x12\x93\x01\n\x1aDeleteCompletedTrainingJob\x129.viam.app.mltraining.v1.DeleteCompletedTrainingJobRequest\x1a:.viam.app.mltraining.v1.DeleteCompletedTrainingJobResponse\x12{\n\x12GetTrainingJobLogs\x121.viam.app.mltraining.v1.GetTrainingJobLogsRequest\x1a2.viam.app.mltraining.v1.GetTrainingJobLogsResponse\x12\x8a\x01\n\x17ListSupportedContainers\x126.viam.app.mltraining.v1.ListSupportedContainersRequest\x1a7.viam.app.mltraining.v1.ListSupportedContainersResponseB#Z!go.viam.com/api/app/mltraining/v1b\x06proto3')
|
|
13
|
+
_globals = globals()
|
|
14
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
15
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'app.mltraining.v1.ml_training_pb2', _globals)
|
|
16
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
17
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
18
|
+
_globals['DESCRIPTOR']._serialized_options = b'Z!go.viam.com/api/app/mltraining/v1'
|
|
19
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['dataset_id']._loaded_options = None
|
|
20
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['dataset_id']._serialized_options = b'\x9a\x84\x9e\x03#bson:"dataset_id" json:"dataset_id"'
|
|
21
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['organization_id']._loaded_options = None
|
|
22
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['organization_id']._serialized_options = b'\x9a\x84\x9e\x03-bson:"organization_id" json:"organization_id"'
|
|
23
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_name']._loaded_options = None
|
|
24
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_name']._serialized_options = b'\x9a\x84\x9e\x03#bson:"model_name" json:"model_name"'
|
|
25
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_version']._loaded_options = None
|
|
26
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_version']._serialized_options = b'\x9a\x84\x9e\x03)bson:"model_version" json:"model_version"'
|
|
27
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_type']._loaded_options = None
|
|
28
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_type']._serialized_options = b'\x9a\x84\x9e\x03#bson:"model_type" json:"model_type"'
|
|
29
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_framework']._loaded_options = None
|
|
30
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['model_framework']._serialized_options = b'\x9a\x84\x9e\x03-bson:"model_framework" json:"model_framework"'
|
|
31
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['tags']._loaded_options = None
|
|
32
|
+
_globals['_SUBMITTRAININGJOBREQUEST'].fields_by_name['tags']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"tags" json:"tags"'
|
|
33
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST_ARGUMENTSENTRY']._loaded_options = None
|
|
34
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST_ARGUMENTSENTRY']._serialized_options = b'8\x01'
|
|
35
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['dataset_id']._loaded_options = None
|
|
36
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['dataset_id']._serialized_options = b'\x9a\x84\x9e\x03#bson:"dataset_id" json:"dataset_id"'
|
|
37
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['registry_item_id']._loaded_options = None
|
|
38
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['registry_item_id']._serialized_options = b'\x9a\x84\x9e\x03/bson:"registry_item_id" json:"registry_item_id"'
|
|
39
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['registry_item_version']._loaded_options = None
|
|
40
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['registry_item_version']._serialized_options = b'\x9a\x84\x9e\x039bson:"registry_item_version" json:"registry_item_version"'
|
|
41
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['organization_id']._loaded_options = None
|
|
42
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['organization_id']._serialized_options = b'\x9a\x84\x9e\x03-bson:"organization_id" json:"organization_id"'
|
|
43
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['model_name']._loaded_options = None
|
|
44
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['model_name']._serialized_options = b'\x9a\x84\x9e\x03#bson:"model_name" json:"model_name"'
|
|
45
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['model_version']._loaded_options = None
|
|
46
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST'].fields_by_name['model_version']._serialized_options = b'\x9a\x84\x9e\x03)bson:"model_version" json:"model_version"'
|
|
47
|
+
_globals['_TRAININGJOBMETADATA_ARGUMENTSENTRY']._loaded_options = None
|
|
48
|
+
_globals['_TRAININGJOBMETADATA_ARGUMENTSENTRY']._serialized_options = b'8\x01'
|
|
49
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['id']._loaded_options = None
|
|
50
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
|
|
51
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['dataset_id']._loaded_options = None
|
|
52
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['dataset_id']._serialized_options = b'\x9a\x84\x9e\x03#bson:"dataset_id" json:"dataset_id"'
|
|
53
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['organization_id']._loaded_options = None
|
|
54
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['organization_id']._serialized_options = b'\x9a\x84\x9e\x03-bson:"organization_id" json:"organization_id"'
|
|
55
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_name']._loaded_options = None
|
|
56
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_name']._serialized_options = b'\x9a\x84\x9e\x03#bson:"model_name" json:"model_name"'
|
|
57
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_version']._loaded_options = None
|
|
58
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_version']._serialized_options = b'\x9a\x84\x9e\x03)bson:"model_version" json:"model_version"'
|
|
59
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_type']._loaded_options = None
|
|
60
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_type']._serialized_options = b'\x9a\x84\x9e\x03#bson:"model_type" json:"model_type"'
|
|
61
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_framework']._loaded_options = None
|
|
62
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['model_framework']._serialized_options = b'\x9a\x84\x9e\x03-bson:"model_framework" json:"model_framework"'
|
|
63
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['is_custom_job']._loaded_options = None
|
|
64
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['is_custom_job']._serialized_options = b'\x9a\x84\x9e\x03)bson:"is_custom_job" json:"is_custom_job"'
|
|
65
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['registry_item_id']._loaded_options = None
|
|
66
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['registry_item_id']._serialized_options = b'\x9a\x84\x9e\x03/bson:"registry_item_id" json:"registry_item_id"'
|
|
67
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['registry_item_version']._loaded_options = None
|
|
68
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['registry_item_version']._serialized_options = b'\x9a\x84\x9e\x039bson:"registry_item_version" json:"registry_item_version"'
|
|
69
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['status']._loaded_options = None
|
|
70
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['status']._serialized_options = b'\x9a\x84\x9e\x03\x1bbson:"status" json:"status"'
|
|
71
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['error_status']._loaded_options = None
|
|
72
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['error_status']._serialized_options = b'\x9a\x84\x9e\x03\'bson:"error_status" json:"error_status"'
|
|
73
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['created_on']._loaded_options = None
|
|
74
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03#bson:"created_on" json:"created_on"'
|
|
75
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['last_modified']._loaded_options = None
|
|
76
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['last_modified']._serialized_options = b'\x9a\x84\x9e\x03)bson:"last_modified" json:"last_modified"'
|
|
77
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['training_started']._loaded_options = None
|
|
78
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['training_started']._serialized_options = b'\x9a\x84\x9e\x03/bson:"training_started" json:"training_started"'
|
|
79
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['training_ended']._loaded_options = None
|
|
80
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['training_ended']._serialized_options = b'\x9a\x84\x9e\x03+bson:"training_ended" json:"training_ended"'
|
|
81
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['synced_model_id']._loaded_options = None
|
|
82
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['synced_model_id']._serialized_options = b'\x9a\x84\x9e\x03-bson:"synced_model_id" json:"synced_model_id"'
|
|
83
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['tags']._loaded_options = None
|
|
84
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['tags']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"tags" json:"tags"'
|
|
85
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['arguments']._loaded_options = None
|
|
86
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['arguments']._serialized_options = b'\x9a\x84\x9e\x03!bson:"arguments" json:"arguments"'
|
|
87
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['container_version']._loaded_options = None
|
|
88
|
+
_globals['_TRAININGJOBMETADATA'].fields_by_name['container_version']._serialized_options = b'\x9a\x84\x9e\x031bson:"container_version" json:"container_version"'
|
|
89
|
+
_globals['_LISTSUPPORTEDCONTAINERSRESPONSE_CONTAINERMAPENTRY']._loaded_options = None
|
|
90
|
+
_globals['_LISTSUPPORTEDCONTAINERSRESPONSE_CONTAINERMAPENTRY']._serialized_options = b'8\x01'
|
|
91
|
+
_globals['_MODELTYPE']._serialized_start = 5066
|
|
92
|
+
_globals['_MODELTYPE']._serialized_end = 5225
|
|
93
|
+
_globals['_MODELFRAMEWORK']._serialized_start = 5228
|
|
94
|
+
_globals['_MODELFRAMEWORK']._serialized_end = 5392
|
|
95
|
+
_globals['_TRAININGSTATUS']._serialized_start = 5395
|
|
96
|
+
_globals['_TRAININGSTATUS']._serialized_end = 5626
|
|
97
|
+
_globals['_SUBMITTRAININGJOBREQUEST']._serialized_start = 146
|
|
98
|
+
_globals['_SUBMITTRAININGJOBREQUEST']._serialized_end = 802
|
|
99
|
+
_globals['_SUBMITTRAININGJOBRESPONSE']._serialized_start = 804
|
|
100
|
+
_globals['_SUBMITTRAININGJOBRESPONSE']._serialized_end = 847
|
|
101
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST']._serialized_start = 850
|
|
102
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST']._serialized_end = 1626
|
|
103
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST_ARGUMENTSENTRY']._serialized_start = 1566
|
|
104
|
+
_globals['_SUBMITCUSTOMTRAININGJOBREQUEST_ARGUMENTSENTRY']._serialized_end = 1626
|
|
105
|
+
_globals['_SUBMITCUSTOMTRAININGJOBRESPONSE']._serialized_start = 1628
|
|
106
|
+
_globals['_SUBMITCUSTOMTRAININGJOBRESPONSE']._serialized_end = 1677
|
|
107
|
+
_globals['_GETTRAININGJOBREQUEST']._serialized_start = 1679
|
|
108
|
+
_globals['_GETTRAININGJOBREQUEST']._serialized_end = 1718
|
|
109
|
+
_globals['_GETTRAININGJOBRESPONSE']._serialized_start = 1720
|
|
110
|
+
_globals['_GETTRAININGJOBRESPONSE']._serialized_end = 1817
|
|
111
|
+
_globals['_LISTTRAININGJOBSREQUEST']._serialized_start = 1820
|
|
112
|
+
_globals['_LISTTRAININGJOBSREQUEST']._serialized_end = 1950
|
|
113
|
+
_globals['_LISTTRAININGJOBSRESPONSE']._serialized_start = 1952
|
|
114
|
+
_globals['_LISTTRAININGJOBSRESPONSE']._serialized_end = 2043
|
|
115
|
+
_globals['_TRAININGJOBMETADATA']._serialized_start = 2046
|
|
116
|
+
_globals['_TRAININGJOBMETADATA']._serialized_end = 4106
|
|
117
|
+
_globals['_TRAININGJOBMETADATA_ARGUMENTSENTRY']._serialized_start = 1566
|
|
118
|
+
_globals['_TRAININGJOBMETADATA_ARGUMENTSENTRY']._serialized_end = 1626
|
|
119
|
+
_globals['_CANCELTRAININGJOBREQUEST']._serialized_start = 4108
|
|
120
|
+
_globals['_CANCELTRAININGJOBREQUEST']._serialized_end = 4150
|
|
121
|
+
_globals['_CANCELTRAININGJOBRESPONSE']._serialized_start = 4152
|
|
122
|
+
_globals['_CANCELTRAININGJOBRESPONSE']._serialized_end = 4179
|
|
123
|
+
_globals['_DELETECOMPLETEDTRAININGJOBREQUEST']._serialized_start = 4181
|
|
124
|
+
_globals['_DELETECOMPLETEDTRAININGJOBREQUEST']._serialized_end = 4232
|
|
125
|
+
_globals['_DELETECOMPLETEDTRAININGJOBRESPONSE']._serialized_start = 4234
|
|
126
|
+
_globals['_DELETECOMPLETEDTRAININGJOBRESPONSE']._serialized_end = 4270
|
|
127
|
+
_globals['_TRAININGJOBLOGENTRY']._serialized_start = 4272
|
|
128
|
+
_globals['_TRAININGJOBLOGENTRY']._serialized_end = 4389
|
|
129
|
+
_globals['_GETTRAININGJOBLOGSREQUEST']._serialized_start = 4391
|
|
130
|
+
_globals['_GETTRAININGJOBLOGSREQUEST']._serialized_end = 4485
|
|
131
|
+
_globals['_GETTRAININGJOBLOGSRESPONSE']._serialized_start = 4488
|
|
132
|
+
_globals['_GETTRAININGJOBLOGSRESPONSE']._serialized_end = 4621
|
|
133
|
+
_globals['_LISTSUPPORTEDCONTAINERSREQUEST']._serialized_start = 4623
|
|
134
|
+
_globals['_LISTSUPPORTEDCONTAINERSREQUEST']._serialized_end = 4655
|
|
135
|
+
_globals['_LISTSUPPORTEDCONTAINERSRESPONSE']._serialized_start = 4658
|
|
136
|
+
_globals['_LISTSUPPORTEDCONTAINERSRESPONSE']._serialized_end = 4903
|
|
137
|
+
_globals['_LISTSUPPORTEDCONTAINERSRESPONSE_CONTAINERMAPENTRY']._serialized_start = 4805
|
|
138
|
+
_globals['_LISTSUPPORTEDCONTAINERSRESPONSE_CONTAINERMAPENTRY']._serialized_end = 4903
|
|
139
|
+
_globals['_CONTAINER']._serialized_start = 4906
|
|
140
|
+
_globals['_CONTAINER']._serialized_end = 5063
|
|
141
|
+
_globals['_MLTRAININGSERVICE']._serialized_start = 5629
|
|
142
|
+
_globals['_MLTRAININGSERVICE']._serialized_end = 6681
|
|
@@ -91,21 +91,23 @@ class SubmitTrainingJobRequest(google.protobuf.message.Message):
|
|
|
91
91
|
MODEL_NAME_FIELD_NUMBER: builtins.int
|
|
92
92
|
MODEL_VERSION_FIELD_NUMBER: builtins.int
|
|
93
93
|
MODEL_TYPE_FIELD_NUMBER: builtins.int
|
|
94
|
+
MODEL_FRAMEWORK_FIELD_NUMBER: builtins.int
|
|
94
95
|
TAGS_FIELD_NUMBER: builtins.int
|
|
95
96
|
dataset_id: builtins.str
|
|
96
97
|
organization_id: builtins.str
|
|
97
98
|
model_name: builtins.str
|
|
98
99
|
model_version: builtins.str
|
|
99
100
|
model_type: global___ModelType.ValueType
|
|
101
|
+
model_framework: global___ModelFramework.ValueType
|
|
100
102
|
|
|
101
103
|
@property
|
|
102
104
|
def tags(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
103
105
|
...
|
|
104
106
|
|
|
105
|
-
def __init__(self, *, dataset_id: builtins.str=..., organization_id: builtins.str=..., model_name: builtins.str=..., model_version: builtins.str=..., model_type: global___ModelType.ValueType=..., tags: collections.abc.Iterable[builtins.str] | None=...) -> None:
|
|
107
|
+
def __init__(self, *, dataset_id: builtins.str=..., organization_id: builtins.str=..., model_name: builtins.str=..., model_version: builtins.str=..., model_type: global___ModelType.ValueType=..., model_framework: global___ModelFramework.ValueType=..., tags: collections.abc.Iterable[builtins.str] | None=...) -> None:
|
|
106
108
|
...
|
|
107
109
|
|
|
108
|
-
def ClearField(self, field_name: typing.Literal['dataset_id', b'dataset_id', 'model_name', b'model_name', 'model_type', b'model_type', 'model_version', b'model_version', 'organization_id', b'organization_id', 'tags', b'tags']) -> None:
|
|
110
|
+
def ClearField(self, field_name: typing.Literal['dataset_id', b'dataset_id', 'model_framework', b'model_framework', 'model_name', b'model_name', 'model_type', b'model_type', 'model_version', b'model_version', 'organization_id', b'organization_id', 'tags', b'tags']) -> None:
|
|
109
111
|
...
|
|
110
112
|
global___SubmitTrainingJobRequest = SubmitTrainingJobRequest
|
|
111
113
|
|
|
@@ -125,23 +127,44 @@ global___SubmitTrainingJobResponse = SubmitTrainingJobResponse
|
|
|
125
127
|
@typing.final
|
|
126
128
|
class SubmitCustomTrainingJobRequest(google.protobuf.message.Message):
|
|
127
129
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
130
|
+
|
|
131
|
+
@typing.final
|
|
132
|
+
class ArgumentsEntry(google.protobuf.message.Message):
|
|
133
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
134
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
135
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
136
|
+
key: builtins.str
|
|
137
|
+
value: builtins.str
|
|
138
|
+
|
|
139
|
+
def __init__(self, *, key: builtins.str=..., value: builtins.str=...) -> None:
|
|
140
|
+
...
|
|
141
|
+
|
|
142
|
+
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
143
|
+
...
|
|
128
144
|
DATASET_ID_FIELD_NUMBER: builtins.int
|
|
129
145
|
REGISTRY_ITEM_ID_FIELD_NUMBER: builtins.int
|
|
130
146
|
REGISTRY_ITEM_VERSION_FIELD_NUMBER: builtins.int
|
|
131
147
|
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
132
148
|
MODEL_NAME_FIELD_NUMBER: builtins.int
|
|
133
149
|
MODEL_VERSION_FIELD_NUMBER: builtins.int
|
|
150
|
+
ARGUMENTS_FIELD_NUMBER: builtins.int
|
|
151
|
+
CONTAINER_VERSION_FIELD_NUMBER: builtins.int
|
|
134
152
|
dataset_id: builtins.str
|
|
135
153
|
registry_item_id: builtins.str
|
|
136
154
|
registry_item_version: builtins.str
|
|
137
155
|
organization_id: builtins.str
|
|
138
156
|
model_name: builtins.str
|
|
139
157
|
model_version: builtins.str
|
|
158
|
+
container_version: builtins.str
|
|
140
159
|
|
|
141
|
-
|
|
160
|
+
@property
|
|
161
|
+
def arguments(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
142
162
|
...
|
|
143
163
|
|
|
144
|
-
def
|
|
164
|
+
def __init__(self, *, dataset_id: builtins.str=..., registry_item_id: builtins.str=..., registry_item_version: builtins.str=..., organization_id: builtins.str=..., model_name: builtins.str=..., model_version: builtins.str=..., arguments: collections.abc.Mapping[builtins.str, builtins.str] | None=..., container_version: builtins.str=...) -> None:
|
|
165
|
+
...
|
|
166
|
+
|
|
167
|
+
def ClearField(self, field_name: typing.Literal['arguments', b'arguments', 'container_version', b'container_version', 'dataset_id', b'dataset_id', 'model_name', b'model_name', 'model_version', b'model_version', 'organization_id', b'organization_id', 'registry_item_id', b'registry_item_id', 'registry_item_version', b'registry_item_version']) -> None:
|
|
145
168
|
...
|
|
146
169
|
global___SubmitCustomTrainingJobRequest = SubmitCustomTrainingJobRequest
|
|
147
170
|
|
|
@@ -224,6 +247,20 @@ global___ListTrainingJobsResponse = ListTrainingJobsResponse
|
|
|
224
247
|
@typing.final
|
|
225
248
|
class TrainingJobMetadata(google.protobuf.message.Message):
|
|
226
249
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
250
|
+
|
|
251
|
+
@typing.final
|
|
252
|
+
class ArgumentsEntry(google.protobuf.message.Message):
|
|
253
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
254
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
255
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
256
|
+
key: builtins.str
|
|
257
|
+
value: builtins.str
|
|
258
|
+
|
|
259
|
+
def __init__(self, *, key: builtins.str=..., value: builtins.str=...) -> None:
|
|
260
|
+
...
|
|
261
|
+
|
|
262
|
+
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
263
|
+
...
|
|
227
264
|
ID_FIELD_NUMBER: builtins.int
|
|
228
265
|
DATASET_ID_FIELD_NUMBER: builtins.int
|
|
229
266
|
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
@@ -242,6 +279,8 @@ class TrainingJobMetadata(google.protobuf.message.Message):
|
|
|
242
279
|
TRAINING_ENDED_FIELD_NUMBER: builtins.int
|
|
243
280
|
SYNCED_MODEL_ID_FIELD_NUMBER: builtins.int
|
|
244
281
|
TAGS_FIELD_NUMBER: builtins.int
|
|
282
|
+
ARGUMENTS_FIELD_NUMBER: builtins.int
|
|
283
|
+
CONTAINER_VERSION_FIELD_NUMBER: builtins.int
|
|
245
284
|
id: builtins.str
|
|
246
285
|
dataset_id: builtins.str
|
|
247
286
|
organization_id: builtins.str
|
|
@@ -254,6 +293,7 @@ class TrainingJobMetadata(google.protobuf.message.Message):
|
|
|
254
293
|
registry_item_version: builtins.str
|
|
255
294
|
status: global___TrainingStatus.ValueType
|
|
256
295
|
synced_model_id: builtins.str
|
|
296
|
+
container_version: builtins.str
|
|
257
297
|
|
|
258
298
|
@property
|
|
259
299
|
def error_status(self) -> google.rpc.status_pb2.Status:
|
|
@@ -279,13 +319,17 @@ class TrainingJobMetadata(google.protobuf.message.Message):
|
|
|
279
319
|
def tags(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
280
320
|
...
|
|
281
321
|
|
|
282
|
-
|
|
322
|
+
@property
|
|
323
|
+
def arguments(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
324
|
+
...
|
|
325
|
+
|
|
326
|
+
def __init__(self, *, id: builtins.str=..., dataset_id: builtins.str=..., organization_id: builtins.str=..., model_name: builtins.str=..., model_version: builtins.str=..., model_type: global___ModelType.ValueType=..., model_framework: global___ModelFramework.ValueType=..., is_custom_job: builtins.bool=..., registry_item_id: builtins.str=..., registry_item_version: builtins.str=..., status: global___TrainingStatus.ValueType=..., error_status: google.rpc.status_pb2.Status | None=..., created_on: google.protobuf.timestamp_pb2.Timestamp | None=..., last_modified: google.protobuf.timestamp_pb2.Timestamp | None=..., training_started: google.protobuf.timestamp_pb2.Timestamp | None=..., training_ended: google.protobuf.timestamp_pb2.Timestamp | None=..., synced_model_id: builtins.str=..., tags: collections.abc.Iterable[builtins.str] | None=..., arguments: collections.abc.Mapping[builtins.str, builtins.str] | None=..., container_version: builtins.str=...) -> None:
|
|
283
327
|
...
|
|
284
328
|
|
|
285
329
|
def HasField(self, field_name: typing.Literal['created_on', b'created_on', 'error_status', b'error_status', 'last_modified', b'last_modified', 'training_ended', b'training_ended', 'training_started', b'training_started']) -> builtins.bool:
|
|
286
330
|
...
|
|
287
331
|
|
|
288
|
-
def ClearField(self, field_name: typing.Literal['created_on', b'created_on', 'dataset_id', b'dataset_id', 'error_status', b'error_status', 'id', b'id', 'is_custom_job', b'is_custom_job', 'last_modified', b'last_modified', 'model_framework', b'model_framework', 'model_name', b'model_name', 'model_type', b'model_type', 'model_version', b'model_version', 'organization_id', b'organization_id', 'registry_item_id', b'registry_item_id', 'registry_item_version', b'registry_item_version', 'status', b'status', 'synced_model_id', b'synced_model_id', 'tags', b'tags', 'training_ended', b'training_ended', 'training_started', b'training_started']) -> None:
|
|
332
|
+
def ClearField(self, field_name: typing.Literal['arguments', b'arguments', 'container_version', b'container_version', 'created_on', b'created_on', 'dataset_id', b'dataset_id', 'error_status', b'error_status', 'id', b'id', 'is_custom_job', b'is_custom_job', 'last_modified', b'last_modified', 'model_framework', b'model_framework', 'model_name', b'model_name', 'model_type', b'model_type', 'model_version', b'model_version', 'organization_id', b'organization_id', 'registry_item_id', b'registry_item_id', 'registry_item_version', b'registry_item_version', 'status', b'status', 'synced_model_id', b'synced_model_id', 'tags', b'tags', 'training_ended', b'training_ended', 'training_started', b'training_started']) -> None:
|
|
289
333
|
...
|
|
290
334
|
global___TrainingJobMetadata = TrainingJobMetadata
|
|
291
335
|
|
|
@@ -329,4 +373,146 @@ class DeleteCompletedTrainingJobResponse(google.protobuf.message.Message):
|
|
|
329
373
|
|
|
330
374
|
def __init__(self) -> None:
|
|
331
375
|
...
|
|
332
|
-
global___DeleteCompletedTrainingJobResponse = DeleteCompletedTrainingJobResponse
|
|
376
|
+
global___DeleteCompletedTrainingJobResponse = DeleteCompletedTrainingJobResponse
|
|
377
|
+
|
|
378
|
+
@typing.final
|
|
379
|
+
class TrainingJobLogEntry(google.protobuf.message.Message):
|
|
380
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
381
|
+
LEVEL_FIELD_NUMBER: builtins.int
|
|
382
|
+
TIME_FIELD_NUMBER: builtins.int
|
|
383
|
+
MESSAGE_FIELD_NUMBER: builtins.int
|
|
384
|
+
level: builtins.str
|
|
385
|
+
message: builtins.str
|
|
386
|
+
|
|
387
|
+
@property
|
|
388
|
+
def time(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
389
|
+
...
|
|
390
|
+
|
|
391
|
+
def __init__(self, *, level: builtins.str=..., time: google.protobuf.timestamp_pb2.Timestamp | None=..., message: builtins.str=...) -> None:
|
|
392
|
+
...
|
|
393
|
+
|
|
394
|
+
def HasField(self, field_name: typing.Literal['time', b'time']) -> builtins.bool:
|
|
395
|
+
...
|
|
396
|
+
|
|
397
|
+
def ClearField(self, field_name: typing.Literal['level', b'level', 'message', b'message', 'time', b'time']) -> None:
|
|
398
|
+
...
|
|
399
|
+
global___TrainingJobLogEntry = TrainingJobLogEntry
|
|
400
|
+
|
|
401
|
+
@typing.final
|
|
402
|
+
class GetTrainingJobLogsRequest(google.protobuf.message.Message):
|
|
403
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
404
|
+
ID_FIELD_NUMBER: builtins.int
|
|
405
|
+
PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
406
|
+
id: builtins.str
|
|
407
|
+
page_token: builtins.str
|
|
408
|
+
|
|
409
|
+
def __init__(self, *, id: builtins.str=..., page_token: builtins.str | None=...) -> None:
|
|
410
|
+
...
|
|
411
|
+
|
|
412
|
+
def HasField(self, field_name: typing.Literal['_page_token', b'_page_token', 'page_token', b'page_token']) -> builtins.bool:
|
|
413
|
+
...
|
|
414
|
+
|
|
415
|
+
def ClearField(self, field_name: typing.Literal['_page_token', b'_page_token', 'id', b'id', 'page_token', b'page_token']) -> None:
|
|
416
|
+
...
|
|
417
|
+
|
|
418
|
+
def WhichOneof(self, oneof_group: typing.Literal['_page_token', b'_page_token']) -> typing.Literal['page_token'] | None:
|
|
419
|
+
...
|
|
420
|
+
global___GetTrainingJobLogsRequest = GetTrainingJobLogsRequest
|
|
421
|
+
|
|
422
|
+
@typing.final
|
|
423
|
+
class GetTrainingJobLogsResponse(google.protobuf.message.Message):
|
|
424
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
425
|
+
LOGS_FIELD_NUMBER: builtins.int
|
|
426
|
+
NEXT_PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
427
|
+
next_page_token: builtins.str
|
|
428
|
+
|
|
429
|
+
@property
|
|
430
|
+
def logs(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___TrainingJobLogEntry]:
|
|
431
|
+
...
|
|
432
|
+
|
|
433
|
+
def __init__(self, *, logs: collections.abc.Iterable[global___TrainingJobLogEntry] | None=..., next_page_token: builtins.str=...) -> None:
|
|
434
|
+
...
|
|
435
|
+
|
|
436
|
+
def ClearField(self, field_name: typing.Literal['logs', b'logs', 'next_page_token', b'next_page_token']) -> None:
|
|
437
|
+
...
|
|
438
|
+
global___GetTrainingJobLogsResponse = GetTrainingJobLogsResponse
|
|
439
|
+
|
|
440
|
+
@typing.final
|
|
441
|
+
class ListSupportedContainersRequest(google.protobuf.message.Message):
|
|
442
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
443
|
+
|
|
444
|
+
def __init__(self) -> None:
|
|
445
|
+
...
|
|
446
|
+
global___ListSupportedContainersRequest = ListSupportedContainersRequest
|
|
447
|
+
|
|
448
|
+
@typing.final
|
|
449
|
+
class ListSupportedContainersResponse(google.protobuf.message.Message):
|
|
450
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
451
|
+
|
|
452
|
+
@typing.final
|
|
453
|
+
class ContainerMapEntry(google.protobuf.message.Message):
|
|
454
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
455
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
456
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
457
|
+
key: builtins.str
|
|
458
|
+
|
|
459
|
+
@property
|
|
460
|
+
def value(self) -> global___Container:
|
|
461
|
+
...
|
|
462
|
+
|
|
463
|
+
def __init__(self, *, key: builtins.str=..., value: global___Container | None=...) -> None:
|
|
464
|
+
...
|
|
465
|
+
|
|
466
|
+
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
467
|
+
...
|
|
468
|
+
|
|
469
|
+
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
470
|
+
...
|
|
471
|
+
CONTAINER_MAP_FIELD_NUMBER: builtins.int
|
|
472
|
+
|
|
473
|
+
@property
|
|
474
|
+
def container_map(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, global___Container]:
|
|
475
|
+
"""ex value:
|
|
476
|
+
container_map: {
|
|
477
|
+
"tf:2.15": Container {
|
|
478
|
+
key: "tf:2.15"
|
|
479
|
+
uri: "us-docker.pkg.dev/vertex-ai/training/tf-gpu.2-15.py310:latest"
|
|
480
|
+
description: "Tensorflow 2.15"
|
|
481
|
+
eol: { seconds: 1772630400, nanos: 0 } // 2026-03-03T00:00:00Z
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
"""
|
|
485
|
+
|
|
486
|
+
def __init__(self, *, container_map: collections.abc.Mapping[builtins.str, global___Container] | None=...) -> None:
|
|
487
|
+
...
|
|
488
|
+
|
|
489
|
+
def ClearField(self, field_name: typing.Literal['container_map', b'container_map']) -> None:
|
|
490
|
+
...
|
|
491
|
+
global___ListSupportedContainersResponse = ListSupportedContainersResponse
|
|
492
|
+
|
|
493
|
+
@typing.final
|
|
494
|
+
class Container(google.protobuf.message.Message):
|
|
495
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
496
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
497
|
+
URI_FIELD_NUMBER: builtins.int
|
|
498
|
+
FRAMEWORK_FIELD_NUMBER: builtins.int
|
|
499
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
500
|
+
EOL_FIELD_NUMBER: builtins.int
|
|
501
|
+
key: builtins.str
|
|
502
|
+
uri: builtins.str
|
|
503
|
+
framework: builtins.str
|
|
504
|
+
description: builtins.str
|
|
505
|
+
|
|
506
|
+
@property
|
|
507
|
+
def eol(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
508
|
+
...
|
|
509
|
+
|
|
510
|
+
def __init__(self, *, key: builtins.str=..., uri: builtins.str=..., framework: builtins.str=..., description: builtins.str=..., eol: google.protobuf.timestamp_pb2.Timestamp | None=...) -> None:
|
|
511
|
+
...
|
|
512
|
+
|
|
513
|
+
def HasField(self, field_name: typing.Literal['eol', b'eol']) -> builtins.bool:
|
|
514
|
+
...
|
|
515
|
+
|
|
516
|
+
def ClearField(self, field_name: typing.Literal['description', b'description', 'eol', b'eol', 'framework', b'framework', 'key', b'key', 'uri', b'uri']) -> None:
|
|
517
|
+
...
|
|
518
|
+
global___Container = Container
|