viam-sdk 0.41.1__py3-none-linux_armv6l.whl → 0.66.0__py3-none-linux_armv6l.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of viam-sdk might be problematic. Click here for more details.
- viam/app/app_client.py +225 -51
- viam/app/billing_client.py +47 -5
- viam/app/data_client.py +771 -234
- viam/app/ml_training_client.py +3 -5
- viam/app/provisioning_client.py +3 -5
- viam/app/viam_client.py +58 -11
- viam/components/arm/arm.py +1 -1
- viam/components/arm/service.py +1 -1
- 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_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/base.py +1 -1
- viam/components/board/board.py +8 -2
- viam/components/board/client.py +2 -1
- viam/components/board/service.py +1 -0
- 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/camera.py +15 -30
- viam/components/camera/client.py +10 -21
- viam/components/camera/service.py +15 -28
- viam/components/component_base.py +2 -2
- viam/components/gantry/client.py +17 -2
- viam/components/gantry/gantry.py +32 -1
- viam/components/gantry/service.py +21 -5
- viam/components/gripper/__init__.py +2 -0
- viam/components/gripper/client.py +25 -2
- viam/components/gripper/gripper.py +76 -1
- viam/components/gripper/service.py +32 -3
- viam/components/input/input.py +1 -1
- viam/components/motor/motor.py +1 -1
- viam/components/power_sensor/power_sensor.py +1 -1
- 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 +98 -0
- viam/gen/app/agent/v1/agent_pb2.py +1 -1
- viam/gen/app/cloudslam/v1/cloud_slam_pb2.py +1 -1
- viam/gen/app/data/v1/data_grpc.py +74 -2
- viam/gen/app/data/v1/data_pb2.py +198 -104
- viam/gen/app/data/v1/data_pb2.pyi +563 -31
- viam/gen/app/datapipelines/__init__.py +0 -0
- viam/gen/app/datapipelines/v1/__init__.py +0 -0
- 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 +8 -4
- viam/gen/app/dataset/v1/dataset_pb2.pyi +36 -1
- viam/gen/app/datasync/v1/data_sync_pb2.py +39 -35
- viam/gen/app/datasync/v1/data_sync_pb2.pyi +21 -8
- viam/gen/app/mlinference/v1/ml_inference_pb2.py +7 -7
- viam/gen/app/mlinference/v1/ml_inference_pb2.pyi +4 -2
- viam/gen/app/mltraining/v1/ml_training_grpc.py +10 -2
- viam/gen/app/mltraining/v1/ml_training_pb2.py +63 -43
- viam/gen/app/mltraining/v1/ml_training_pb2.pyi +112 -7
- viam/gen/app/packages/v1/packages_pb2.py +1 -1
- viam/gen/app/v1/app_grpc.py +74 -3
- viam/gen/app/v1/app_pb2.py +600 -545
- viam/gen/app/v1/app_pb2.pyi +1108 -258
- viam/gen/app/v1/billing_grpc.py +26 -2
- viam/gen/app/v1/billing_pb2.py +52 -36
- viam/gen/app/v1/billing_pb2.pyi +158 -4
- viam/gen/app/v1/end_user_pb2.py +1 -1
- viam/gen/app/v1/robot_pb2.py +95 -89
- viam/gen/app/v1/robot_pb2.pyi +121 -9
- viam/gen/common/v1/common_pb2.py +76 -58
- viam/gen/common/v1/common_pb2.pyi +186 -17
- viam/gen/component/arm/v1/arm_grpc.py +10 -2
- viam/gen/component/arm/v1/arm_pb2.py +5 -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 +1 -1
- 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 +1 -1
- viam/gen/component/board/v1/board_pb2.py +1 -1
- viam/gen/component/button/v1/button_pb2.py +1 -1
- viam/gen/component/camera/v1/camera_grpc.py +1 -0
- viam/gen/component/camera/v1/camera_pb2.py +37 -36
- viam/gen/component/camera/v1/camera_pb2.pyi +31 -4
- viam/gen/component/encoder/v1/encoder_pb2.py +1 -1
- viam/gen/component/gantry/v1/gantry_grpc.py +9 -1
- viam/gen/component/gantry/v1/gantry_pb2.py +5 -3
- viam/gen/component/generic/v1/generic_pb2.py +1 -1
- viam/gen/component/gripper/v1/gripper_grpc.py +18 -2
- viam/gen/component/gripper/v1/gripper_pb2.py +12 -4
- viam/gen/component/gripper/v1/gripper_pb2.pyi +43 -1
- viam/gen/component/inputcontroller/v1/input_controller_pb2.py +1 -1
- viam/gen/component/motor/v1/motor_pb2.py +1 -1
- viam/gen/component/movementsensor/v1/movementsensor_pb2.py +1 -1
- viam/gen/component/posetracker/v1/pose_tracker_pb2.py +1 -1
- viam/gen/component/powersensor/v1/powersensor_pb2.py +1 -1
- viam/gen/component/sensor/v1/sensor_pb2.py +1 -1
- viam/gen/component/servo/v1/servo_pb2.py +1 -1
- viam/gen/component/switch/v1/switch_pb2.py +5 -5
- viam/gen/component/switch/v1/switch_pb2.pyi +9 -2
- viam/gen/component/testecho/v1/testecho_pb2.py +1 -1
- viam/gen/module/v1/module_pb2.py +5 -5
- viam/gen/module/v1/module_pb2.pyi +7 -2
- viam/gen/opentelemetry/__init__.py +0 -0
- viam/gen/opentelemetry/proto/__init__.py +0 -0
- viam/gen/opentelemetry/proto/common/__init__.py +0 -0
- viam/gen/opentelemetry/proto/common/v1/__init__.py +0 -0
- viam/gen/opentelemetry/proto/common/v1/common_grpc.py +0 -0
- viam/gen/opentelemetry/proto/common/v1/common_pb2.py +27 -0
- viam/gen/opentelemetry/proto/common/v1/common_pb2.pyi +208 -0
- viam/gen/opentelemetry/proto/resource/__init__.py +0 -0
- viam/gen/opentelemetry/proto/resource/v1/__init__.py +0 -0
- viam/gen/opentelemetry/proto/resource/v1/resource_grpc.py +0 -0
- viam/gen/opentelemetry/proto/resource/v1/resource_pb2.py +18 -0
- viam/gen/opentelemetry/proto/resource/v1/resource_pb2.pyi +59 -0
- viam/gen/opentelemetry/proto/trace/__init__.py +0 -0
- viam/gen/opentelemetry/proto/trace/v1/__init__.py +0 -0
- viam/gen/opentelemetry/proto/trace/v1/trace_grpc.py +0 -0
- viam/gen/opentelemetry/proto/trace/v1/trace_pb2.py +37 -0
- viam/gen/opentelemetry/proto/trace/v1/trace_pb2.pyi +402 -0
- viam/gen/proto/rpc/examples/echo/v1/echo_pb2.py +1 -1
- viam/gen/proto/rpc/examples/echoresource/v1/echoresource_pb2.py +1 -1
- viam/gen/proto/rpc/v1/auth_pb2.py +1 -1
- viam/gen/proto/rpc/webrtc/v1/grpc_pb2.py +1 -1
- viam/gen/proto/rpc/webrtc/v1/signaling_pb2.py +1 -1
- viam/gen/provisioning/v1/provisioning_grpc.py +10 -2
- viam/gen/provisioning/v1/provisioning_pb2.py +32 -26
- viam/gen/provisioning/v1/provisioning_pb2.pyi +46 -5
- viam/gen/robot/v1/robot_grpc.py +51 -34
- viam/gen/robot/v1/robot_pb2.py +147 -142
- viam/gen/robot/v1/robot_pb2.pyi +153 -86
- viam/gen/service/datamanager/v1/data_manager_grpc.py +11 -2
- viam/gen/service/datamanager/v1/data_manager_pb2.py +15 -8
- viam/gen/service/datamanager/v1/data_manager_pb2.pyi +47 -1
- viam/gen/service/discovery/v1/discovery_pb2.py +1 -1
- viam/gen/service/generic/v1/generic_pb2.py +1 -1
- viam/gen/service/mlmodel/v1/mlmodel_pb2.py +1 -1
- viam/gen/service/motion/v1/motion_pb2.py +92 -62
- viam/gen/service/motion/v1/motion_pb2.pyi +130 -68
- viam/gen/service/navigation/v1/navigation_pb2.py +1 -1
- viam/gen/service/sensors/v1/sensors_pb2.py +1 -1
- viam/gen/service/shell/v1/shell_pb2.py +1 -1
- viam/gen/service/slam/v1/slam_pb2.py +1 -1
- 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 +27 -27
- 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_pb2.py +1 -1
- viam/gen/tagger/v1/tagger_pb2.py +1 -1
- viam/logging.py +9 -8
- viam/media/audio.py +22 -10
- viam/media/utils/pil/__init__.py +5 -1
- viam/media/video.py +54 -40
- viam/module/module.py +85 -16
- viam/module/resource_data_consumer.py +41 -0
- viam/module/service.py +9 -1
- viam/proto/app/__init__.py +68 -0
- viam/proto/app/billing.py +16 -0
- viam/proto/app/data/__init__.py +48 -0
- viam/proto/app/datapipelines/__init__.py +56 -0
- viam/proto/app/dataset/__init__.py +4 -0
- viam/proto/app/mltraining/__init__.py +6 -0
- viam/proto/app/robot.py +6 -0
- viam/proto/common/__init__.py +14 -0
- viam/proto/component/audioin/__init__.py +16 -0
- viam/proto/component/audioout/__init__.py +15 -0
- viam/proto/component/camera/__init__.py +0 -2
- viam/proto/component/gripper/__init__.py +4 -0
- viam/proto/opentelemetry/__init__.py +0 -0
- viam/proto/opentelemetry/proto/__init__.py +0 -0
- viam/proto/opentelemetry/proto/common/__init__.py +15 -0
- viam/proto/opentelemetry/proto/resource/__init__.py +10 -0
- viam/proto/opentelemetry/proto/trace/__init__.py +15 -0
- viam/proto/provisioning/__init__.py +6 -0
- viam/proto/robot/__init__.py +16 -8
- viam/proto/service/datamanager/__init__.py +8 -1
- viam/proto/service/motion/__init__.py +2 -0
- viam/proto/service/video/__init__.py +15 -0
- viam/proto/service/worldstatestore/__init__.py +32 -0
- viam/resource/easy_resource.py +5 -9
- viam/resource/manager.py +4 -3
- viam/resource/registry.py +2 -2
- viam/resource/types.py +2 -2
- viam/robot/client.py +38 -59
- viam/rpc/dial.py +48 -5
- viam/rpc/libviam_rust_utils.so +0 -0
- viam/rpc/server.py +24 -10
- viam/services/motion/client.py +8 -9
- viam/services/motion/motion.py +48 -46
- viam/services/navigation/navigation.py +2 -2
- viam/services/vision/client.py +1 -1
- viam/services/vision/service.py +5 -8
- viam/services/vision/vision.py +5 -3
- 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/version_metadata.py +2 -2
- {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/METADATA +10 -6
- {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/RECORD +221 -152
- {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/WHEEL +1 -1
- viam/components/audio_input/__init__.py +0 -18
- viam/components/audio_input/audio_input.py +0 -81
- viam/components/audio_input/client.py +0 -70
- viam/components/audio_input/service.py +0 -114
- {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/licenses/LICENSE +0 -0
viam/gen/app/v1/app_pb2.pyi
CHANGED
|
@@ -6,7 +6,6 @@ from ... import app
|
|
|
6
6
|
import builtins
|
|
7
7
|
import collections.abc
|
|
8
8
|
from ... import common
|
|
9
|
-
import google.protobuf.any_pb2
|
|
10
9
|
import google.protobuf.descriptor
|
|
11
10
|
import google.protobuf.internal.containers
|
|
12
11
|
import google.protobuf.internal.enum_type_wrapper
|
|
@@ -21,6 +20,25 @@ else:
|
|
|
21
20
|
import typing_extensions
|
|
22
21
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
23
22
|
|
|
23
|
+
class _OnlineState:
|
|
24
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
25
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
26
|
+
|
|
27
|
+
class _OnlineStateEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_OnlineState.ValueType], builtins.type):
|
|
28
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
29
|
+
ONLINE_STATE_UNSPECIFIED: _OnlineState.ValueType
|
|
30
|
+
ONLINE_STATE_ONLINE: _OnlineState.ValueType
|
|
31
|
+
ONLINE_STATE_OFFLINE: _OnlineState.ValueType
|
|
32
|
+
ONLINE_STATE_AWAITING_SETUP: _OnlineState.ValueType
|
|
33
|
+
|
|
34
|
+
class OnlineState(_OnlineState, metaclass=_OnlineStateEnumTypeWrapper):
|
|
35
|
+
...
|
|
36
|
+
ONLINE_STATE_UNSPECIFIED: OnlineState.ValueType
|
|
37
|
+
ONLINE_STATE_ONLINE: OnlineState.ValueType
|
|
38
|
+
ONLINE_STATE_OFFLINE: OnlineState.ValueType
|
|
39
|
+
ONLINE_STATE_AWAITING_SETUP: OnlineState.ValueType
|
|
40
|
+
global___OnlineState = OnlineState
|
|
41
|
+
|
|
24
42
|
class _AuthenticationType:
|
|
25
43
|
ValueType = typing.NewType('ValueType', builtins.int)
|
|
26
44
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -82,6 +100,46 @@ FRAGMENT_ERROR_TYPE_CHILD_ID_INVALID: FragmentErrorType.ValueType
|
|
|
82
100
|
FRAGMENT_ERROR_TYPE_CYCLE_DETECTED: FragmentErrorType.ValueType
|
|
83
101
|
global___FragmentErrorType = FragmentErrorType
|
|
84
102
|
|
|
103
|
+
class _ModuleSourceType:
|
|
104
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
105
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
106
|
+
|
|
107
|
+
class _ModuleSourceTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ModuleSourceType.ValueType], builtins.type):
|
|
108
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
109
|
+
MODULE_SOURCE_TYPE_UNSPECIFIED: _ModuleSourceType.ValueType
|
|
110
|
+
MODULE_SOURCE_TYPE_EXTERNAL: _ModuleSourceType.ValueType
|
|
111
|
+
'Module source code is stored externally, such as in github.'
|
|
112
|
+
MODULE_SOURCE_TYPE_VIAM_HOSTED: _ModuleSourceType.ValueType
|
|
113
|
+
'Module source code is versioned and managed within Viam.'
|
|
114
|
+
|
|
115
|
+
class ModuleSourceType(_ModuleSourceType, metaclass=_ModuleSourceTypeEnumTypeWrapper):
|
|
116
|
+
...
|
|
117
|
+
MODULE_SOURCE_TYPE_UNSPECIFIED: ModuleSourceType.ValueType
|
|
118
|
+
MODULE_SOURCE_TYPE_EXTERNAL: ModuleSourceType.ValueType
|
|
119
|
+
'Module source code is stored externally, such as in github.'
|
|
120
|
+
MODULE_SOURCE_TYPE_VIAM_HOSTED: ModuleSourceType.ValueType
|
|
121
|
+
'Module source code is versioned and managed within Viam.'
|
|
122
|
+
global___ModuleSourceType = ModuleSourceType
|
|
123
|
+
|
|
124
|
+
class _ModuleLanguage:
|
|
125
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
126
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
127
|
+
|
|
128
|
+
class _ModuleLanguageEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ModuleLanguage.ValueType], builtins.type):
|
|
129
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
130
|
+
MODULE_LANGUAGE_UNSPECIFIED: _ModuleLanguage.ValueType
|
|
131
|
+
MODULE_LANGUAGE_GOLANG: _ModuleLanguage.ValueType
|
|
132
|
+
MODULE_LANGUAGE_PYTHON: _ModuleLanguage.ValueType
|
|
133
|
+
MODULE_LANGUAGE_CPP: _ModuleLanguage.ValueType
|
|
134
|
+
|
|
135
|
+
class ModuleLanguage(_ModuleLanguage, metaclass=_ModuleLanguageEnumTypeWrapper):
|
|
136
|
+
...
|
|
137
|
+
MODULE_LANGUAGE_UNSPECIFIED: ModuleLanguage.ValueType
|
|
138
|
+
MODULE_LANGUAGE_GOLANG: ModuleLanguage.ValueType
|
|
139
|
+
MODULE_LANGUAGE_PYTHON: ModuleLanguage.ValueType
|
|
140
|
+
MODULE_LANGUAGE_CPP: ModuleLanguage.ValueType
|
|
141
|
+
global___ModuleLanguage = ModuleLanguage
|
|
142
|
+
|
|
85
143
|
class _RegistryItemStatus:
|
|
86
144
|
ValueType = typing.NewType('ValueType', builtins.int)
|
|
87
145
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -124,6 +182,23 @@ VISIBILITY_PUBLIC_UNLISTED: Visibility.ValueType
|
|
|
124
182
|
"Public Unlisted registry items are usable in everyone's robot but are hidden from the registry page as if they are private"
|
|
125
183
|
global___Visibility = Visibility
|
|
126
184
|
|
|
185
|
+
class _AppType:
|
|
186
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
187
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
188
|
+
|
|
189
|
+
class _AppTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_AppType.ValueType], builtins.type):
|
|
190
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
191
|
+
APP_TYPE_UNSPECIFIED: _AppType.ValueType
|
|
192
|
+
APP_TYPE_SINGLE_MACHINE: _AppType.ValueType
|
|
193
|
+
APP_TYPE_MULTI_MACHINE: _AppType.ValueType
|
|
194
|
+
|
|
195
|
+
class AppType(_AppType, metaclass=_AppTypeEnumTypeWrapper):
|
|
196
|
+
...
|
|
197
|
+
APP_TYPE_UNSPECIFIED: AppType.ValueType
|
|
198
|
+
APP_TYPE_SINGLE_MACHINE: AppType.ValueType
|
|
199
|
+
APP_TYPE_MULTI_MACHINE: AppType.ValueType
|
|
200
|
+
global___AppType = AppType
|
|
201
|
+
|
|
127
202
|
class _ClientAuthentication:
|
|
128
203
|
ValueType = typing.NewType('ValueType', builtins.int)
|
|
129
204
|
V: typing_extensions.TypeAlias = ValueType
|
|
@@ -210,9 +285,13 @@ class Robot(google.protobuf.message.Message):
|
|
|
210
285
|
LOCATION_FIELD_NUMBER: builtins.int
|
|
211
286
|
LAST_ACCESS_FIELD_NUMBER: builtins.int
|
|
212
287
|
CREATED_ON_FIELD_NUMBER: builtins.int
|
|
288
|
+
ONLINE_STATE_FIELD_NUMBER: builtins.int
|
|
289
|
+
SECONDS_SINCE_ONLINE_FIELD_NUMBER: builtins.int
|
|
213
290
|
id: builtins.str
|
|
214
291
|
name: builtins.str
|
|
215
292
|
location: builtins.str
|
|
293
|
+
online_state: global___OnlineState.ValueType
|
|
294
|
+
seconds_since_online: builtins.int
|
|
216
295
|
|
|
217
296
|
@property
|
|
218
297
|
def last_access(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
@@ -222,13 +301,13 @@ class Robot(google.protobuf.message.Message):
|
|
|
222
301
|
def created_on(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
223
302
|
...
|
|
224
303
|
|
|
225
|
-
def __init__(self, *, id: builtins.str=..., name: builtins.str=..., location: builtins.str=..., last_access: google.protobuf.timestamp_pb2.Timestamp | None=..., created_on: google.protobuf.timestamp_pb2.Timestamp | None=...) -> None:
|
|
304
|
+
def __init__(self, *, id: builtins.str=..., name: builtins.str=..., location: builtins.str=..., last_access: google.protobuf.timestamp_pb2.Timestamp | None=..., created_on: google.protobuf.timestamp_pb2.Timestamp | None=..., online_state: global___OnlineState.ValueType=..., seconds_since_online: builtins.int=...) -> None:
|
|
226
305
|
...
|
|
227
306
|
|
|
228
307
|
def HasField(self, field_name: typing.Literal['created_on', b'created_on', 'last_access', b'last_access']) -> builtins.bool:
|
|
229
308
|
...
|
|
230
309
|
|
|
231
|
-
def ClearField(self, field_name: typing.Literal['created_on', b'created_on', 'id', b'id', 'last_access', b'last_access', 'location', b'location', 'name', b'name']) -> None:
|
|
310
|
+
def ClearField(self, field_name: typing.Literal['created_on', b'created_on', 'id', b'id', 'last_access', b'last_access', 'location', b'location', 'name', b'name', 'online_state', b'online_state', 'seconds_since_online', b'seconds_since_online']) -> None:
|
|
232
311
|
...
|
|
233
312
|
global___Robot = Robot
|
|
234
313
|
|
|
@@ -250,6 +329,8 @@ class RobotPart(google.protobuf.message.Message):
|
|
|
250
329
|
CREATED_ON_FIELD_NUMBER: builtins.int
|
|
251
330
|
SECRETS_FIELD_NUMBER: builtins.int
|
|
252
331
|
LAST_UPDATED_FIELD_NUMBER: builtins.int
|
|
332
|
+
ONLINE_STATE_FIELD_NUMBER: builtins.int
|
|
333
|
+
SECONDS_SINCE_ONLINE_FIELD_NUMBER: builtins.int
|
|
253
334
|
id: builtins.str
|
|
254
335
|
name: builtins.str
|
|
255
336
|
dns_name: builtins.str
|
|
@@ -261,6 +342,8 @@ class RobotPart(google.protobuf.message.Message):
|
|
|
261
342
|
main_part: builtins.bool
|
|
262
343
|
fqdn: builtins.str
|
|
263
344
|
local_fqdn: builtins.str
|
|
345
|
+
online_state: global___OnlineState.ValueType
|
|
346
|
+
seconds_since_online: builtins.int
|
|
264
347
|
|
|
265
348
|
@property
|
|
266
349
|
def robot_config(self) -> google.protobuf.struct_pb2.Struct:
|
|
@@ -286,13 +369,13 @@ class RobotPart(google.protobuf.message.Message):
|
|
|
286
369
|
def last_updated(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
287
370
|
"""latest timestamp when a robot part was updated"""
|
|
288
371
|
|
|
289
|
-
def __init__(self, *, id: builtins.str=..., name: builtins.str=..., dns_name: builtins.str=..., secret: builtins.str=..., robot: builtins.str=..., location_id: builtins.str=..., robot_config: google.protobuf.struct_pb2.Struct | None=..., last_access: google.protobuf.timestamp_pb2.Timestamp | None=..., user_supplied_info: google.protobuf.struct_pb2.Struct | None=..., main_part: builtins.bool=..., fqdn: builtins.str=..., local_fqdn: builtins.str=..., created_on: google.protobuf.timestamp_pb2.Timestamp | None=..., secrets: collections.abc.Iterable[global___SharedSecret] | None=..., last_updated: google.protobuf.timestamp_pb2.Timestamp | None=...) -> None:
|
|
372
|
+
def __init__(self, *, id: builtins.str=..., name: builtins.str=..., dns_name: builtins.str=..., secret: builtins.str=..., robot: builtins.str=..., location_id: builtins.str=..., robot_config: google.protobuf.struct_pb2.Struct | None=..., last_access: google.protobuf.timestamp_pb2.Timestamp | None=..., user_supplied_info: google.protobuf.struct_pb2.Struct | None=..., main_part: builtins.bool=..., fqdn: builtins.str=..., local_fqdn: builtins.str=..., created_on: google.protobuf.timestamp_pb2.Timestamp | None=..., secrets: collections.abc.Iterable[global___SharedSecret] | None=..., last_updated: google.protobuf.timestamp_pb2.Timestamp | None=..., online_state: global___OnlineState.ValueType=..., seconds_since_online: builtins.int=...) -> None:
|
|
290
373
|
...
|
|
291
374
|
|
|
292
375
|
def HasField(self, field_name: typing.Literal['created_on', b'created_on', 'last_access', b'last_access', 'last_updated', b'last_updated', 'robot_config', b'robot_config', 'user_supplied_info', b'user_supplied_info']) -> builtins.bool:
|
|
293
376
|
...
|
|
294
377
|
|
|
295
|
-
def ClearField(self, field_name: typing.Literal['created_on', b'created_on', 'dns_name', b'dns_name', 'fqdn', b'fqdn', 'id', b'id', 'last_access', b'last_access', 'last_updated', b'last_updated', 'local_fqdn', b'local_fqdn', 'location_id', b'location_id', 'main_part', b'main_part', 'name', b'name', 'robot', b'robot', 'robot_config', b'robot_config', 'secret', b'secret', 'secrets', b'secrets', 'user_supplied_info', b'user_supplied_info']) -> None:
|
|
378
|
+
def ClearField(self, field_name: typing.Literal['created_on', b'created_on', 'dns_name', b'dns_name', 'fqdn', b'fqdn', 'id', b'id', 'last_access', b'last_access', 'last_updated', b'last_updated', 'local_fqdn', b'local_fqdn', 'location_id', b'location_id', 'main_part', b'main_part', 'name', b'name', 'online_state', b'online_state', 'robot', b'robot', 'robot_config', b'robot_config', 'seconds_since_online', b'seconds_since_online', 'secret', b'secret', 'secrets', b'secrets', 'user_supplied_info', b'user_supplied_info']) -> None:
|
|
296
379
|
...
|
|
297
380
|
global___RobotPart = RobotPart
|
|
298
381
|
|
|
@@ -394,6 +477,7 @@ class OrganizationMember(google.protobuf.message.Message):
|
|
|
394
477
|
EMAILS_FIELD_NUMBER: builtins.int
|
|
395
478
|
DATE_ADDED_FIELD_NUMBER: builtins.int
|
|
396
479
|
LAST_LOGIN_FIELD_NUMBER: builtins.int
|
|
480
|
+
LAST_ACCESS_FIELD_NUMBER: builtins.int
|
|
397
481
|
user_id: builtins.str
|
|
398
482
|
|
|
399
483
|
@property
|
|
@@ -408,15 +492,24 @@ class OrganizationMember(google.protobuf.message.Message):
|
|
|
408
492
|
def last_login(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
409
493
|
...
|
|
410
494
|
|
|
411
|
-
|
|
495
|
+
@property
|
|
496
|
+
def last_access(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
497
|
+
...
|
|
498
|
+
|
|
499
|
+
def __init__(self, *, user_id: builtins.str=..., emails: collections.abc.Iterable[builtins.str] | None=..., date_added: google.protobuf.timestamp_pb2.Timestamp | None=..., last_login: google.protobuf.timestamp_pb2.Timestamp | None=..., last_access: google.protobuf.timestamp_pb2.Timestamp | None=...) -> None:
|
|
412
500
|
...
|
|
413
501
|
|
|
414
|
-
def HasField(self, field_name: typing.Literal['_last_login', b'_last_login', 'date_added', b'date_added', 'last_login', b'last_login']) -> builtins.bool:
|
|
502
|
+
def HasField(self, field_name: typing.Literal['_last_access', b'_last_access', '_last_login', b'_last_login', 'date_added', b'date_added', 'last_access', b'last_access', 'last_login', b'last_login']) -> builtins.bool:
|
|
415
503
|
...
|
|
416
504
|
|
|
417
|
-
def ClearField(self, field_name: typing.Literal['_last_login', b'_last_login', 'date_added', b'date_added', 'emails', b'emails', 'last_login', b'last_login', 'user_id', b'user_id']) -> None:
|
|
505
|
+
def ClearField(self, field_name: typing.Literal['_last_access', b'_last_access', '_last_login', b'_last_login', 'date_added', b'date_added', 'emails', b'emails', 'last_access', b'last_access', 'last_login', b'last_login', 'user_id', b'user_id']) -> None:
|
|
418
506
|
...
|
|
419
507
|
|
|
508
|
+
@typing.overload
|
|
509
|
+
def WhichOneof(self, oneof_group: typing.Literal['_last_access', b'_last_access']) -> typing.Literal['last_access'] | None:
|
|
510
|
+
...
|
|
511
|
+
|
|
512
|
+
@typing.overload
|
|
420
513
|
def WhichOneof(self, oneof_group: typing.Literal['_last_login', b'_last_login']) -> typing.Literal['last_login'] | None:
|
|
421
514
|
...
|
|
422
515
|
global___OrganizationMember = OrganizationMember
|
|
@@ -533,12 +626,14 @@ global___GetOrganizationResponse = GetOrganizationResponse
|
|
|
533
626
|
class GetOrganizationNamespaceAvailabilityRequest(google.protobuf.message.Message):
|
|
534
627
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
535
628
|
PUBLIC_NAMESPACE_FIELD_NUMBER: builtins.int
|
|
629
|
+
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
536
630
|
public_namespace: builtins.str
|
|
631
|
+
organization_id: builtins.str
|
|
537
632
|
|
|
538
|
-
def __init__(self, *, public_namespace: builtins.str=...) -> None:
|
|
633
|
+
def __init__(self, *, public_namespace: builtins.str=..., organization_id: builtins.str=...) -> None:
|
|
539
634
|
...
|
|
540
635
|
|
|
541
|
-
def ClearField(self, field_name: typing.Literal['public_namespace', b'public_namespace']) -> None:
|
|
636
|
+
def ClearField(self, field_name: typing.Literal['organization_id', b'organization_id', 'public_namespace', b'public_namespace']) -> None:
|
|
542
637
|
...
|
|
543
638
|
global___GetOrganizationNamespaceAvailabilityRequest = GetOrganizationNamespaceAvailabilityRequest
|
|
544
639
|
|
|
@@ -555,6 +650,22 @@ class GetOrganizationNamespaceAvailabilityResponse(google.protobuf.message.Messa
|
|
|
555
650
|
...
|
|
556
651
|
global___GetOrganizationNamespaceAvailabilityResponse = GetOrganizationNamespaceAvailabilityResponse
|
|
557
652
|
|
|
653
|
+
@typing.final
|
|
654
|
+
class FragmentImportList(google.protobuf.message.Message):
|
|
655
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
656
|
+
IMPORTS_FIELD_NUMBER: builtins.int
|
|
657
|
+
|
|
658
|
+
@property
|
|
659
|
+
def imports(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FragmentImport]:
|
|
660
|
+
...
|
|
661
|
+
|
|
662
|
+
def __init__(self, *, imports: collections.abc.Iterable[global___FragmentImport] | None=...) -> None:
|
|
663
|
+
...
|
|
664
|
+
|
|
665
|
+
def ClearField(self, field_name: typing.Literal['imports', b'imports']) -> None:
|
|
666
|
+
...
|
|
667
|
+
global___FragmentImportList = FragmentImportList
|
|
668
|
+
|
|
558
669
|
@typing.final
|
|
559
670
|
class UpdateOrganizationRequest(google.protobuf.message.Message):
|
|
560
671
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -563,6 +674,7 @@ class UpdateOrganizationRequest(google.protobuf.message.Message):
|
|
|
563
674
|
PUBLIC_NAMESPACE_FIELD_NUMBER: builtins.int
|
|
564
675
|
REGION_FIELD_NUMBER: builtins.int
|
|
565
676
|
CID_FIELD_NUMBER: builtins.int
|
|
677
|
+
FRAGMENT_IMPORTS_FIELD_NUMBER: builtins.int
|
|
566
678
|
organization_id: builtins.str
|
|
567
679
|
name: builtins.str
|
|
568
680
|
public_namespace: builtins.str
|
|
@@ -570,19 +682,27 @@ class UpdateOrganizationRequest(google.protobuf.message.Message):
|
|
|
570
682
|
'The new GCS region to associate the org with.'
|
|
571
683
|
cid: builtins.str
|
|
572
684
|
|
|
573
|
-
|
|
685
|
+
@property
|
|
686
|
+
def fragment_imports(self) -> global___FragmentImportList:
|
|
687
|
+
...
|
|
688
|
+
|
|
689
|
+
def __init__(self, *, organization_id: builtins.str=..., name: builtins.str | None=..., public_namespace: builtins.str | None=..., region: builtins.str | None=..., cid: builtins.str | None=..., fragment_imports: global___FragmentImportList | None=...) -> None:
|
|
574
690
|
...
|
|
575
691
|
|
|
576
|
-
def HasField(self, field_name: typing.Literal['_cid', b'_cid', '_name', b'_name', '_public_namespace', b'_public_namespace', '_region', b'_region', 'cid', b'cid', 'name', b'name', 'public_namespace', b'public_namespace', 'region', b'region']) -> builtins.bool:
|
|
692
|
+
def HasField(self, field_name: typing.Literal['_cid', b'_cid', '_fragment_imports', b'_fragment_imports', '_name', b'_name', '_public_namespace', b'_public_namespace', '_region', b'_region', 'cid', b'cid', 'fragment_imports', b'fragment_imports', 'name', b'name', 'public_namespace', b'public_namespace', 'region', b'region']) -> builtins.bool:
|
|
577
693
|
...
|
|
578
694
|
|
|
579
|
-
def ClearField(self, field_name: typing.Literal['_cid', b'_cid', '_name', b'_name', '_public_namespace', b'_public_namespace', '_region', b'_region', 'cid', b'cid', 'name', b'name', 'organization_id', b'organization_id', 'public_namespace', b'public_namespace', 'region', b'region']) -> None:
|
|
695
|
+
def ClearField(self, field_name: typing.Literal['_cid', b'_cid', '_fragment_imports', b'_fragment_imports', '_name', b'_name', '_public_namespace', b'_public_namespace', '_region', b'_region', 'cid', b'cid', 'fragment_imports', b'fragment_imports', 'name', b'name', 'organization_id', b'organization_id', 'public_namespace', b'public_namespace', 'region', b'region']) -> None:
|
|
580
696
|
...
|
|
581
697
|
|
|
582
698
|
@typing.overload
|
|
583
699
|
def WhichOneof(self, oneof_group: typing.Literal['_cid', b'_cid']) -> typing.Literal['cid'] | None:
|
|
584
700
|
...
|
|
585
701
|
|
|
702
|
+
@typing.overload
|
|
703
|
+
def WhichOneof(self, oneof_group: typing.Literal['_fragment_imports', b'_fragment_imports']) -> typing.Literal['fragment_imports'] | None:
|
|
704
|
+
...
|
|
705
|
+
|
|
586
706
|
@typing.overload
|
|
587
707
|
def WhichOneof(self, oneof_group: typing.Literal['_name', b'_name']) -> typing.Literal['name'] | None:
|
|
588
708
|
...
|
|
@@ -615,6 +735,40 @@ class UpdateOrganizationResponse(google.protobuf.message.Message):
|
|
|
615
735
|
...
|
|
616
736
|
global___UpdateOrganizationResponse = UpdateOrganizationResponse
|
|
617
737
|
|
|
738
|
+
@typing.final
|
|
739
|
+
class UpdateOrganizationNamespaceRequest(google.protobuf.message.Message):
|
|
740
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
741
|
+
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
742
|
+
NEW_PUBLIC_NAMESPACE_FIELD_NUMBER: builtins.int
|
|
743
|
+
organization_id: builtins.str
|
|
744
|
+
new_public_namespace: builtins.str
|
|
745
|
+
|
|
746
|
+
def __init__(self, *, organization_id: builtins.str=..., new_public_namespace: builtins.str=...) -> None:
|
|
747
|
+
...
|
|
748
|
+
|
|
749
|
+
def ClearField(self, field_name: typing.Literal['new_public_namespace', b'new_public_namespace', 'organization_id', b'organization_id']) -> None:
|
|
750
|
+
...
|
|
751
|
+
global___UpdateOrganizationNamespaceRequest = UpdateOrganizationNamespaceRequest
|
|
752
|
+
|
|
753
|
+
@typing.final
|
|
754
|
+
class UpdateOrganizationNamespaceResponse(google.protobuf.message.Message):
|
|
755
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
756
|
+
ORGANIZATION_FIELD_NUMBER: builtins.int
|
|
757
|
+
|
|
758
|
+
@property
|
|
759
|
+
def organization(self) -> global___Organization:
|
|
760
|
+
...
|
|
761
|
+
|
|
762
|
+
def __init__(self, *, organization: global___Organization | None=...) -> None:
|
|
763
|
+
...
|
|
764
|
+
|
|
765
|
+
def HasField(self, field_name: typing.Literal['organization', b'organization']) -> builtins.bool:
|
|
766
|
+
...
|
|
767
|
+
|
|
768
|
+
def ClearField(self, field_name: typing.Literal['organization', b'organization']) -> None:
|
|
769
|
+
...
|
|
770
|
+
global___UpdateOrganizationNamespaceResponse = UpdateOrganizationNamespaceResponse
|
|
771
|
+
|
|
618
772
|
@typing.final
|
|
619
773
|
class DeleteOrganizationRequest(google.protobuf.message.Message):
|
|
620
774
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -652,33 +806,16 @@ global___GetOrganizationMetadataRequest = GetOrganizationMetadataRequest
|
|
|
652
806
|
@typing.final
|
|
653
807
|
class GetOrganizationMetadataResponse(google.protobuf.message.Message):
|
|
654
808
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
655
|
-
|
|
656
|
-
@typing.final
|
|
657
|
-
class DataEntry(google.protobuf.message.Message):
|
|
658
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
659
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
660
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
661
|
-
key: builtins.str
|
|
662
|
-
|
|
663
|
-
@property
|
|
664
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
665
|
-
...
|
|
666
|
-
|
|
667
|
-
def __init__(self, *, key: builtins.str=..., value: google.protobuf.any_pb2.Any | None=...) -> None:
|
|
668
|
-
...
|
|
669
|
-
|
|
670
|
-
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
671
|
-
...
|
|
672
|
-
|
|
673
|
-
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
674
|
-
...
|
|
675
809
|
DATA_FIELD_NUMBER: builtins.int
|
|
676
810
|
|
|
677
811
|
@property
|
|
678
|
-
def data(self) -> google.protobuf.
|
|
812
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
813
|
+
...
|
|
814
|
+
|
|
815
|
+
def __init__(self, *, data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
679
816
|
...
|
|
680
817
|
|
|
681
|
-
def
|
|
818
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
682
819
|
...
|
|
683
820
|
|
|
684
821
|
def ClearField(self, field_name: typing.Literal['data', b'data']) -> None:
|
|
@@ -688,35 +825,18 @@ global___GetOrganizationMetadataResponse = GetOrganizationMetadataResponse
|
|
|
688
825
|
@typing.final
|
|
689
826
|
class UpdateOrganizationMetadataRequest(google.protobuf.message.Message):
|
|
690
827
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
691
|
-
|
|
692
|
-
@typing.final
|
|
693
|
-
class DataEntry(google.protobuf.message.Message):
|
|
694
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
695
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
696
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
697
|
-
key: builtins.str
|
|
698
|
-
|
|
699
|
-
@property
|
|
700
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
701
|
-
...
|
|
702
|
-
|
|
703
|
-
def __init__(self, *, key: builtins.str=..., value: google.protobuf.any_pb2.Any | None=...) -> None:
|
|
704
|
-
...
|
|
705
|
-
|
|
706
|
-
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
707
|
-
...
|
|
708
|
-
|
|
709
|
-
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
710
|
-
...
|
|
711
828
|
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
712
829
|
DATA_FIELD_NUMBER: builtins.int
|
|
713
830
|
organization_id: builtins.str
|
|
714
831
|
|
|
715
832
|
@property
|
|
716
|
-
def data(self) -> google.protobuf.
|
|
833
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
834
|
+
...
|
|
835
|
+
|
|
836
|
+
def __init__(self, *, organization_id: builtins.str=..., data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
717
837
|
...
|
|
718
838
|
|
|
719
|
-
def
|
|
839
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
720
840
|
...
|
|
721
841
|
|
|
722
842
|
def ClearField(self, field_name: typing.Literal['data', b'data', 'organization_id', b'organization_id']) -> None:
|
|
@@ -887,13 +1007,22 @@ class ResendOrganizationInviteRequest(google.protobuf.message.Message):
|
|
|
887
1007
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
888
1008
|
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
889
1009
|
EMAIL_FIELD_NUMBER: builtins.int
|
|
1010
|
+
SEND_EMAIL_INVITE_FIELD_NUMBER: builtins.int
|
|
890
1011
|
organization_id: builtins.str
|
|
891
1012
|
email: builtins.str
|
|
1013
|
+
send_email_invite: builtins.bool
|
|
1014
|
+
'Set to true (the default) to send an email to the recipient of an invite. The user must accept the email to be added to the associated authorizations.\n When set to false, the user automatically receives the associated authorization on the next login of the user with the associated email address.\n '
|
|
892
1015
|
|
|
893
|
-
def __init__(self, *, organization_id: builtins.str=..., email: builtins.str=...) -> None:
|
|
1016
|
+
def __init__(self, *, organization_id: builtins.str=..., email: builtins.str=..., send_email_invite: builtins.bool | None=...) -> None:
|
|
894
1017
|
...
|
|
895
1018
|
|
|
896
|
-
def
|
|
1019
|
+
def HasField(self, field_name: typing.Literal['_send_email_invite', b'_send_email_invite', 'send_email_invite', b'send_email_invite']) -> builtins.bool:
|
|
1020
|
+
...
|
|
1021
|
+
|
|
1022
|
+
def ClearField(self, field_name: typing.Literal['_send_email_invite', b'_send_email_invite', 'email', b'email', 'organization_id', b'organization_id', 'send_email_invite', b'send_email_invite']) -> None:
|
|
1023
|
+
...
|
|
1024
|
+
|
|
1025
|
+
def WhichOneof(self, oneof_group: typing.Literal['_send_email_invite', b'_send_email_invite']) -> typing.Literal['send_email_invite'] | None:
|
|
897
1026
|
...
|
|
898
1027
|
global___ResendOrganizationInviteRequest = ResendOrganizationInviteRequest
|
|
899
1028
|
|
|
@@ -1221,6 +1350,7 @@ class Location(google.protobuf.message.Message):
|
|
|
1221
1350
|
CREATED_ON_FIELD_NUMBER: builtins.int
|
|
1222
1351
|
ROBOT_COUNT_FIELD_NUMBER: builtins.int
|
|
1223
1352
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1353
|
+
PRIMARY_ORG_IDENTITY_FIELD_NUMBER: builtins.int
|
|
1224
1354
|
id: builtins.str
|
|
1225
1355
|
'Location ID.'
|
|
1226
1356
|
name: builtins.str
|
|
@@ -1246,13 +1376,20 @@ class Location(google.protobuf.message.Message):
|
|
|
1246
1376
|
def config(self) -> global___StorageConfig:
|
|
1247
1377
|
"""Config for how data in this location is stored."""
|
|
1248
1378
|
|
|
1249
|
-
|
|
1379
|
+
@property
|
|
1380
|
+
def primary_org_identity(self) -> global___OrganizationIdentity:
|
|
1381
|
+
"""The organization that is the primary owner of the location."""
|
|
1382
|
+
|
|
1383
|
+
def __init__(self, *, id: builtins.str=..., name: builtins.str=..., parent_location_id: builtins.str=..., auth: global___LocationAuth | None=..., organizations: collections.abc.Iterable[global___LocationOrganization] | None=..., created_on: google.protobuf.timestamp_pb2.Timestamp | None=..., robot_count: builtins.int=..., config: global___StorageConfig | None=..., primary_org_identity: global___OrganizationIdentity | None=...) -> None:
|
|
1384
|
+
...
|
|
1385
|
+
|
|
1386
|
+
def HasField(self, field_name: typing.Literal['_primary_org_identity', b'_primary_org_identity', 'auth', b'auth', 'config', b'config', 'created_on', b'created_on', 'primary_org_identity', b'primary_org_identity']) -> builtins.bool:
|
|
1250
1387
|
...
|
|
1251
1388
|
|
|
1252
|
-
def
|
|
1389
|
+
def ClearField(self, field_name: typing.Literal['_primary_org_identity', b'_primary_org_identity', 'auth', b'auth', 'config', b'config', 'created_on', b'created_on', 'id', b'id', 'name', b'name', 'organizations', b'organizations', 'parent_location_id', b'parent_location_id', 'primary_org_identity', b'primary_org_identity', 'robot_count', b'robot_count']) -> None:
|
|
1253
1390
|
...
|
|
1254
1391
|
|
|
1255
|
-
def
|
|
1392
|
+
def WhichOneof(self, oneof_group: typing.Literal['_primary_org_identity', b'_primary_org_identity']) -> typing.Literal['primary_org_identity'] | None:
|
|
1256
1393
|
...
|
|
1257
1394
|
global___Location = Location
|
|
1258
1395
|
|
|
@@ -1477,33 +1614,16 @@ global___GetLocationMetadataRequest = GetLocationMetadataRequest
|
|
|
1477
1614
|
@typing.final
|
|
1478
1615
|
class GetLocationMetadataResponse(google.protobuf.message.Message):
|
|
1479
1616
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1480
|
-
|
|
1481
|
-
@typing.final
|
|
1482
|
-
class DataEntry(google.protobuf.message.Message):
|
|
1483
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1484
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
1485
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
1486
|
-
key: builtins.str
|
|
1487
|
-
|
|
1488
|
-
@property
|
|
1489
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
1490
|
-
...
|
|
1491
|
-
|
|
1492
|
-
def __init__(self, *, key: builtins.str=..., value: google.protobuf.any_pb2.Any | None=...) -> None:
|
|
1493
|
-
...
|
|
1494
|
-
|
|
1495
|
-
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
1496
|
-
...
|
|
1497
|
-
|
|
1498
|
-
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
1499
|
-
...
|
|
1500
1617
|
DATA_FIELD_NUMBER: builtins.int
|
|
1501
1618
|
|
|
1502
1619
|
@property
|
|
1503
|
-
def data(self) -> google.protobuf.
|
|
1620
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
1504
1621
|
...
|
|
1505
1622
|
|
|
1506
|
-
def __init__(self, *, data:
|
|
1623
|
+
def __init__(self, *, data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
1624
|
+
...
|
|
1625
|
+
|
|
1626
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
1507
1627
|
...
|
|
1508
1628
|
|
|
1509
1629
|
def ClearField(self, field_name: typing.Literal['data', b'data']) -> None:
|
|
@@ -1513,35 +1633,18 @@ global___GetLocationMetadataResponse = GetLocationMetadataResponse
|
|
|
1513
1633
|
@typing.final
|
|
1514
1634
|
class UpdateLocationMetadataRequest(google.protobuf.message.Message):
|
|
1515
1635
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1516
|
-
|
|
1517
|
-
@typing.final
|
|
1518
|
-
class DataEntry(google.protobuf.message.Message):
|
|
1519
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1520
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
1521
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
1522
|
-
key: builtins.str
|
|
1523
|
-
|
|
1524
|
-
@property
|
|
1525
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
1526
|
-
...
|
|
1527
|
-
|
|
1528
|
-
def __init__(self, *, key: builtins.str=..., value: google.protobuf.any_pb2.Any | None=...) -> None:
|
|
1529
|
-
...
|
|
1530
|
-
|
|
1531
|
-
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
1532
|
-
...
|
|
1533
|
-
|
|
1534
|
-
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
1535
|
-
...
|
|
1536
1636
|
LOCATION_ID_FIELD_NUMBER: builtins.int
|
|
1537
1637
|
DATA_FIELD_NUMBER: builtins.int
|
|
1538
1638
|
location_id: builtins.str
|
|
1539
1639
|
|
|
1540
1640
|
@property
|
|
1541
|
-
def data(self) -> google.protobuf.
|
|
1641
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
1642
|
+
...
|
|
1643
|
+
|
|
1644
|
+
def __init__(self, *, location_id: builtins.str=..., data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
1542
1645
|
...
|
|
1543
1646
|
|
|
1544
|
-
def
|
|
1647
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
1545
1648
|
...
|
|
1546
1649
|
|
|
1547
1650
|
def ClearField(self, field_name: typing.Literal['data', b'data', 'location_id', b'location_id']) -> None:
|
|
@@ -1896,6 +1999,40 @@ class GetRobotPartResponse(google.protobuf.message.Message):
|
|
|
1896
1999
|
...
|
|
1897
2000
|
global___GetRobotPartResponse = GetRobotPartResponse
|
|
1898
2001
|
|
|
2002
|
+
@typing.final
|
|
2003
|
+
class GetRobotPartByNameAndLocationRequest(google.protobuf.message.Message):
|
|
2004
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2005
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
2006
|
+
LOCATION_ID_FIELD_NUMBER: builtins.int
|
|
2007
|
+
name: builtins.str
|
|
2008
|
+
location_id: builtins.str
|
|
2009
|
+
|
|
2010
|
+
def __init__(self, *, name: builtins.str=..., location_id: builtins.str=...) -> None:
|
|
2011
|
+
...
|
|
2012
|
+
|
|
2013
|
+
def ClearField(self, field_name: typing.Literal['location_id', b'location_id', 'name', b'name']) -> None:
|
|
2014
|
+
...
|
|
2015
|
+
global___GetRobotPartByNameAndLocationRequest = GetRobotPartByNameAndLocationRequest
|
|
2016
|
+
|
|
2017
|
+
@typing.final
|
|
2018
|
+
class GetRobotPartByNameAndLocationResponse(google.protobuf.message.Message):
|
|
2019
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2020
|
+
PART_FIELD_NUMBER: builtins.int
|
|
2021
|
+
|
|
2022
|
+
@property
|
|
2023
|
+
def part(self) -> global___RobotPart:
|
|
2024
|
+
...
|
|
2025
|
+
|
|
2026
|
+
def __init__(self, *, part: global___RobotPart | None=...) -> None:
|
|
2027
|
+
...
|
|
2028
|
+
|
|
2029
|
+
def HasField(self, field_name: typing.Literal['part', b'part']) -> builtins.bool:
|
|
2030
|
+
...
|
|
2031
|
+
|
|
2032
|
+
def ClearField(self, field_name: typing.Literal['part', b'part']) -> None:
|
|
2033
|
+
...
|
|
2034
|
+
global___GetRobotPartByNameAndLocationResponse = GetRobotPartByNameAndLocationResponse
|
|
2035
|
+
|
|
1899
2036
|
@typing.final
|
|
1900
2037
|
class GetRobotPartLogsRequest(google.protobuf.message.Message):
|
|
1901
2038
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -1908,6 +2045,7 @@ class GetRobotPartLogsRequest(google.protobuf.message.Message):
|
|
|
1908
2045
|
END_FIELD_NUMBER: builtins.int
|
|
1909
2046
|
LIMIT_FIELD_NUMBER: builtins.int
|
|
1910
2047
|
SOURCE_FIELD_NUMBER: builtins.int
|
|
2048
|
+
USER_FACING_ONLY_FIELD_NUMBER: builtins.int
|
|
1911
2049
|
id: builtins.str
|
|
1912
2050
|
errors_only: builtins.bool
|
|
1913
2051
|
'TODO(https://viam.atlassian.net/browse/APP-3877): Remove this field'
|
|
@@ -1915,6 +2053,7 @@ class GetRobotPartLogsRequest(google.protobuf.message.Message):
|
|
|
1915
2053
|
page_token: builtins.str
|
|
1916
2054
|
limit: builtins.int
|
|
1917
2055
|
source: builtins.str
|
|
2056
|
+
user_facing_only: builtins.bool
|
|
1918
2057
|
|
|
1919
2058
|
@property
|
|
1920
2059
|
def levels(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
@@ -1928,13 +2067,13 @@ class GetRobotPartLogsRequest(google.protobuf.message.Message):
|
|
|
1928
2067
|
def end(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
1929
2068
|
...
|
|
1930
2069
|
|
|
1931
|
-
def __init__(self, *, id: builtins.str=..., errors_only: builtins.bool=..., filter: builtins.str | None=..., page_token: builtins.str | None=..., levels: collections.abc.Iterable[builtins.str] | None=..., start: google.protobuf.timestamp_pb2.Timestamp | None=..., end: google.protobuf.timestamp_pb2.Timestamp | None=..., limit: builtins.int | None=..., source: builtins.str | None=...) -> None:
|
|
2070
|
+
def __init__(self, *, id: builtins.str=..., errors_only: builtins.bool=..., filter: builtins.str | None=..., page_token: builtins.str | None=..., levels: collections.abc.Iterable[builtins.str] | None=..., start: google.protobuf.timestamp_pb2.Timestamp | None=..., end: google.protobuf.timestamp_pb2.Timestamp | None=..., limit: builtins.int | None=..., source: builtins.str | None=..., user_facing_only: builtins.bool | None=...) -> None:
|
|
1932
2071
|
...
|
|
1933
2072
|
|
|
1934
|
-
def HasField(self, field_name: typing.Literal['_end', b'_end', '_filter', b'_filter', '_limit', b'_limit', '_page_token', b'_page_token', '_source', b'_source', '_start', b'_start', 'end', b'end', 'filter', b'filter', 'limit', b'limit', 'page_token', b'page_token', 'source', b'source', 'start', b'start']) -> builtins.bool:
|
|
2073
|
+
def HasField(self, field_name: typing.Literal['_end', b'_end', '_filter', b'_filter', '_limit', b'_limit', '_page_token', b'_page_token', '_source', b'_source', '_start', b'_start', '_user_facing_only', b'_user_facing_only', 'end', b'end', 'filter', b'filter', 'limit', b'limit', 'page_token', b'page_token', 'source', b'source', 'start', b'start', 'user_facing_only', b'user_facing_only']) -> builtins.bool:
|
|
1935
2074
|
...
|
|
1936
2075
|
|
|
1937
|
-
def ClearField(self, field_name: typing.Literal['_end', b'_end', '_filter', b'_filter', '_limit', b'_limit', '_page_token', b'_page_token', '_source', b'_source', '_start', b'_start', 'end', b'end', 'errors_only', b'errors_only', 'filter', b'filter', 'id', b'id', 'levels', b'levels', 'limit', b'limit', 'page_token', b'page_token', 'source', b'source', 'start', b'start']) -> None:
|
|
2076
|
+
def ClearField(self, field_name: typing.Literal['_end', b'_end', '_filter', b'_filter', '_limit', b'_limit', '_page_token', b'_page_token', '_source', b'_source', '_start', b'_start', '_user_facing_only', b'_user_facing_only', 'end', b'end', 'errors_only', b'errors_only', 'filter', b'filter', 'id', b'id', 'levels', b'levels', 'limit', b'limit', 'page_token', b'page_token', 'source', b'source', 'start', b'start', 'user_facing_only', b'user_facing_only']) -> None:
|
|
1938
2077
|
...
|
|
1939
2078
|
|
|
1940
2079
|
@typing.overload
|
|
@@ -1960,6 +2099,10 @@ class GetRobotPartLogsRequest(google.protobuf.message.Message):
|
|
|
1960
2099
|
@typing.overload
|
|
1961
2100
|
def WhichOneof(self, oneof_group: typing.Literal['_start', b'_start']) -> typing.Literal['start'] | None:
|
|
1962
2101
|
...
|
|
2102
|
+
|
|
2103
|
+
@typing.overload
|
|
2104
|
+
def WhichOneof(self, oneof_group: typing.Literal['_user_facing_only', b'_user_facing_only']) -> typing.Literal['user_facing_only'] | None:
|
|
2105
|
+
...
|
|
1963
2106
|
global___GetRobotPartLogsRequest = GetRobotPartLogsRequest
|
|
1964
2107
|
|
|
1965
2108
|
@typing.final
|
|
@@ -2054,6 +2197,7 @@ class UpdateRobotPartRequest(google.protobuf.message.Message):
|
|
|
2054
2197
|
ID_FIELD_NUMBER: builtins.int
|
|
2055
2198
|
NAME_FIELD_NUMBER: builtins.int
|
|
2056
2199
|
ROBOT_CONFIG_FIELD_NUMBER: builtins.int
|
|
2200
|
+
LAST_KNOWN_UPDATE_FIELD_NUMBER: builtins.int
|
|
2057
2201
|
id: builtins.str
|
|
2058
2202
|
name: builtins.str
|
|
2059
2203
|
|
|
@@ -2061,13 +2205,20 @@ class UpdateRobotPartRequest(google.protobuf.message.Message):
|
|
|
2061
2205
|
def robot_config(self) -> google.protobuf.struct_pb2.Struct:
|
|
2062
2206
|
...
|
|
2063
2207
|
|
|
2064
|
-
|
|
2208
|
+
@property
|
|
2209
|
+
def last_known_update(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
2210
|
+
...
|
|
2211
|
+
|
|
2212
|
+
def __init__(self, *, id: builtins.str=..., name: builtins.str=..., robot_config: google.protobuf.struct_pb2.Struct | None=..., last_known_update: google.protobuf.timestamp_pb2.Timestamp | None=...) -> None:
|
|
2213
|
+
...
|
|
2214
|
+
|
|
2215
|
+
def HasField(self, field_name: typing.Literal['_last_known_update', b'_last_known_update', 'last_known_update', b'last_known_update', 'robot_config', b'robot_config']) -> builtins.bool:
|
|
2065
2216
|
...
|
|
2066
2217
|
|
|
2067
|
-
def
|
|
2218
|
+
def ClearField(self, field_name: typing.Literal['_last_known_update', b'_last_known_update', 'id', b'id', 'last_known_update', b'last_known_update', 'name', b'name', 'robot_config', b'robot_config']) -> None:
|
|
2068
2219
|
...
|
|
2069
2220
|
|
|
2070
|
-
def
|
|
2221
|
+
def WhichOneof(self, oneof_group: typing.Literal['_last_known_update', b'_last_known_update']) -> typing.Literal['last_known_update'] | None:
|
|
2071
2222
|
...
|
|
2072
2223
|
global___UpdateRobotPartRequest = UpdateRobotPartRequest
|
|
2073
2224
|
|
|
@@ -2147,33 +2298,16 @@ global___GetRobotPartMetadataRequest = GetRobotPartMetadataRequest
|
|
|
2147
2298
|
@typing.final
|
|
2148
2299
|
class GetRobotPartMetadataResponse(google.protobuf.message.Message):
|
|
2149
2300
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2150
|
-
|
|
2151
|
-
@typing.final
|
|
2152
|
-
class DataEntry(google.protobuf.message.Message):
|
|
2153
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2154
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
2155
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
2156
|
-
key: builtins.str
|
|
2157
|
-
|
|
2158
|
-
@property
|
|
2159
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
2160
|
-
...
|
|
2161
|
-
|
|
2162
|
-
def __init__(self, *, key: builtins.str=..., value: google.protobuf.any_pb2.Any | None=...) -> None:
|
|
2163
|
-
...
|
|
2164
|
-
|
|
2165
|
-
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
2166
|
-
...
|
|
2167
|
-
|
|
2168
|
-
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
2169
|
-
...
|
|
2170
2301
|
DATA_FIELD_NUMBER: builtins.int
|
|
2171
2302
|
|
|
2172
2303
|
@property
|
|
2173
|
-
def data(self) -> google.protobuf.
|
|
2304
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
2305
|
+
...
|
|
2306
|
+
|
|
2307
|
+
def __init__(self, *, data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
2174
2308
|
...
|
|
2175
2309
|
|
|
2176
|
-
def
|
|
2310
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
2177
2311
|
...
|
|
2178
2312
|
|
|
2179
2313
|
def ClearField(self, field_name: typing.Literal['data', b'data']) -> None:
|
|
@@ -2183,35 +2317,18 @@ global___GetRobotPartMetadataResponse = GetRobotPartMetadataResponse
|
|
|
2183
2317
|
@typing.final
|
|
2184
2318
|
class UpdateRobotPartMetadataRequest(google.protobuf.message.Message):
|
|
2185
2319
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2186
|
-
|
|
2187
|
-
@typing.final
|
|
2188
|
-
class DataEntry(google.protobuf.message.Message):
|
|
2189
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2190
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
2191
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
2192
|
-
key: builtins.str
|
|
2193
|
-
|
|
2194
|
-
@property
|
|
2195
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
2196
|
-
...
|
|
2197
|
-
|
|
2198
|
-
def __init__(self, *, key: builtins.str=..., value: google.protobuf.any_pb2.Any | None=...) -> None:
|
|
2199
|
-
...
|
|
2200
|
-
|
|
2201
|
-
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
2202
|
-
...
|
|
2203
|
-
|
|
2204
|
-
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
2205
|
-
...
|
|
2206
2320
|
ID_FIELD_NUMBER: builtins.int
|
|
2207
2321
|
DATA_FIELD_NUMBER: builtins.int
|
|
2208
2322
|
id: builtins.str
|
|
2209
2323
|
|
|
2210
2324
|
@property
|
|
2211
|
-
def data(self) -> google.protobuf.
|
|
2325
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
2326
|
+
...
|
|
2327
|
+
|
|
2328
|
+
def __init__(self, *, id: builtins.str=..., data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
2212
2329
|
...
|
|
2213
2330
|
|
|
2214
|
-
def
|
|
2331
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
2215
2332
|
...
|
|
2216
2333
|
|
|
2217
2334
|
def ClearField(self, field_name: typing.Literal['data', b'data', 'id', b'id']) -> None:
|
|
@@ -2462,17 +2579,61 @@ class FragmentUsage(google.protobuf.message.Message):
|
|
|
2462
2579
|
global___FragmentUsage = FragmentUsage
|
|
2463
2580
|
|
|
2464
2581
|
@typing.final
|
|
2465
|
-
class
|
|
2582
|
+
class FragmentImport(google.protobuf.message.Message):
|
|
2466
2583
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2467
|
-
FRAGMENT_ID_FIELD_NUMBER: builtins.int
|
|
2468
|
-
RESOLVED_CONFIG_FIELD_NUMBER: builtins.int
|
|
2469
|
-
ERROR_FIELD_NUMBER: builtins.int
|
|
2470
|
-
REVISION_FIELD_NUMBER: builtins.int
|
|
2471
|
-
fragment_id: builtins.str
|
|
2472
|
-
revision: builtins.str
|
|
2473
2584
|
|
|
2474
|
-
@
|
|
2475
|
-
|
|
2585
|
+
@typing.final
|
|
2586
|
+
class VariablesEntry(google.protobuf.message.Message):
|
|
2587
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2588
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
2589
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
2590
|
+
key: builtins.str
|
|
2591
|
+
value: builtins.str
|
|
2592
|
+
|
|
2593
|
+
def __init__(self, *, key: builtins.str=..., value: builtins.str=...) -> None:
|
|
2594
|
+
...
|
|
2595
|
+
|
|
2596
|
+
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
2597
|
+
...
|
|
2598
|
+
FRAGMENT_ID_FIELD_NUMBER: builtins.int
|
|
2599
|
+
VERSION_FIELD_NUMBER: builtins.int
|
|
2600
|
+
PREFIX_FIELD_NUMBER: builtins.int
|
|
2601
|
+
VARIABLES_FIELD_NUMBER: builtins.int
|
|
2602
|
+
fragment_id: builtins.str
|
|
2603
|
+
version: builtins.str
|
|
2604
|
+
'revision or tag'
|
|
2605
|
+
prefix: builtins.str
|
|
2606
|
+
'namespace prefix'
|
|
2607
|
+
|
|
2608
|
+
@property
|
|
2609
|
+
def variables(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
2610
|
+
"""key-value pairs for fragment variables"""
|
|
2611
|
+
|
|
2612
|
+
def __init__(self, *, fragment_id: builtins.str=..., version: builtins.str=..., prefix: builtins.str | None=..., variables: collections.abc.Mapping[builtins.str, builtins.str] | None=...) -> None:
|
|
2613
|
+
...
|
|
2614
|
+
|
|
2615
|
+
def HasField(self, field_name: typing.Literal['_prefix', b'_prefix', 'prefix', b'prefix']) -> builtins.bool:
|
|
2616
|
+
...
|
|
2617
|
+
|
|
2618
|
+
def ClearField(self, field_name: typing.Literal['_prefix', b'_prefix', 'fragment_id', b'fragment_id', 'prefix', b'prefix', 'variables', b'variables', 'version', b'version']) -> None:
|
|
2619
|
+
...
|
|
2620
|
+
|
|
2621
|
+
def WhichOneof(self, oneof_group: typing.Literal['_prefix', b'_prefix']) -> typing.Literal['prefix'] | None:
|
|
2622
|
+
...
|
|
2623
|
+
global___FragmentImport = FragmentImport
|
|
2624
|
+
|
|
2625
|
+
@typing.final
|
|
2626
|
+
class ResolvedFragment(google.protobuf.message.Message):
|
|
2627
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2628
|
+
FRAGMENT_ID_FIELD_NUMBER: builtins.int
|
|
2629
|
+
RESOLVED_CONFIG_FIELD_NUMBER: builtins.int
|
|
2630
|
+
ERROR_FIELD_NUMBER: builtins.int
|
|
2631
|
+
REVISION_FIELD_NUMBER: builtins.int
|
|
2632
|
+
fragment_id: builtins.str
|
|
2633
|
+
revision: builtins.str
|
|
2634
|
+
|
|
2635
|
+
@property
|
|
2636
|
+
def resolved_config(self) -> google.protobuf.struct_pb2.Struct:
|
|
2476
2637
|
...
|
|
2477
2638
|
|
|
2478
2639
|
@property
|
|
@@ -2643,6 +2804,7 @@ class UpdateFragmentRequest(google.protobuf.message.Message):
|
|
|
2643
2804
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
2644
2805
|
PUBLIC_FIELD_NUMBER: builtins.int
|
|
2645
2806
|
VISIBILITY_FIELD_NUMBER: builtins.int
|
|
2807
|
+
LAST_KNOWN_UPDATE_FIELD_NUMBER: builtins.int
|
|
2646
2808
|
id: builtins.str
|
|
2647
2809
|
name: builtins.str
|
|
2648
2810
|
public: builtins.bool
|
|
@@ -2652,13 +2814,21 @@ class UpdateFragmentRequest(google.protobuf.message.Message):
|
|
|
2652
2814
|
def config(self) -> google.protobuf.struct_pb2.Struct:
|
|
2653
2815
|
...
|
|
2654
2816
|
|
|
2655
|
-
|
|
2817
|
+
@property
|
|
2818
|
+
def last_known_update(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
2819
|
+
...
|
|
2820
|
+
|
|
2821
|
+
def __init__(self, *, id: builtins.str=..., name: builtins.str=..., config: google.protobuf.struct_pb2.Struct | None=..., public: builtins.bool | None=..., visibility: global___FragmentVisibility.ValueType | None=..., last_known_update: google.protobuf.timestamp_pb2.Timestamp | None=...) -> None:
|
|
2822
|
+
...
|
|
2823
|
+
|
|
2824
|
+
def HasField(self, field_name: typing.Literal['_last_known_update', b'_last_known_update', '_public', b'_public', '_visibility', b'_visibility', 'config', b'config', 'last_known_update', b'last_known_update', 'public', b'public', 'visibility', b'visibility']) -> builtins.bool:
|
|
2656
2825
|
...
|
|
2657
2826
|
|
|
2658
|
-
def
|
|
2827
|
+
def ClearField(self, field_name: typing.Literal['_last_known_update', b'_last_known_update', '_public', b'_public', '_visibility', b'_visibility', 'config', b'config', 'id', b'id', 'last_known_update', b'last_known_update', 'name', b'name', 'public', b'public', 'visibility', b'visibility']) -> None:
|
|
2659
2828
|
...
|
|
2660
2829
|
|
|
2661
|
-
|
|
2830
|
+
@typing.overload
|
|
2831
|
+
def WhichOneof(self, oneof_group: typing.Literal['_last_known_update', b'_last_known_update']) -> typing.Literal['last_known_update'] | None:
|
|
2662
2832
|
...
|
|
2663
2833
|
|
|
2664
2834
|
@typing.overload
|
|
@@ -2862,6 +3032,35 @@ class ListRobotsRequest(google.protobuf.message.Message):
|
|
|
2862
3032
|
...
|
|
2863
3033
|
global___ListRobotsRequest = ListRobotsRequest
|
|
2864
3034
|
|
|
3035
|
+
@typing.final
|
|
3036
|
+
class ListRobotsForLocationsRequest(google.protobuf.message.Message):
|
|
3037
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3038
|
+
LOCATION_IDS_FIELD_NUMBER: builtins.int
|
|
3039
|
+
|
|
3040
|
+
@property
|
|
3041
|
+
def location_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
3042
|
+
...
|
|
3043
|
+
|
|
3044
|
+
def __init__(self, *, location_ids: collections.abc.Iterable[builtins.str] | None=...) -> None:
|
|
3045
|
+
...
|
|
3046
|
+
|
|
3047
|
+
def ClearField(self, field_name: typing.Literal['location_ids', b'location_ids']) -> None:
|
|
3048
|
+
...
|
|
3049
|
+
global___ListRobotsForLocationsRequest = ListRobotsForLocationsRequest
|
|
3050
|
+
|
|
3051
|
+
@typing.final
|
|
3052
|
+
class ListRobotsForOrgRequest(google.protobuf.message.Message):
|
|
3053
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3054
|
+
ORG_ID_FIELD_NUMBER: builtins.int
|
|
3055
|
+
org_id: builtins.str
|
|
3056
|
+
|
|
3057
|
+
def __init__(self, *, org_id: builtins.str=...) -> None:
|
|
3058
|
+
...
|
|
3059
|
+
|
|
3060
|
+
def ClearField(self, field_name: typing.Literal['org_id', b'org_id']) -> None:
|
|
3061
|
+
...
|
|
3062
|
+
global___ListRobotsForOrgRequest = ListRobotsForOrgRequest
|
|
3063
|
+
|
|
2865
3064
|
@typing.final
|
|
2866
3065
|
class AdditionalFragment(google.protobuf.message.Message):
|
|
2867
3066
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -2883,6 +3082,51 @@ class AdditionalFragment(google.protobuf.message.Message):
|
|
|
2883
3082
|
...
|
|
2884
3083
|
global___AdditionalFragment = AdditionalFragment
|
|
2885
3084
|
|
|
3085
|
+
@typing.final
|
|
3086
|
+
class ListNestedFragmentsRequest(google.protobuf.message.Message):
|
|
3087
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3088
|
+
FRAGMENT_ID_FIELD_NUMBER: builtins.int
|
|
3089
|
+
ADDITIONAL_FRAGMENTS_FIELD_NUMBER: builtins.int
|
|
3090
|
+
fragment_id: builtins.str
|
|
3091
|
+
|
|
3092
|
+
@property
|
|
3093
|
+
def additional_fragments(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___AdditionalFragment]:
|
|
3094
|
+
...
|
|
3095
|
+
|
|
3096
|
+
def __init__(self, *, fragment_id: builtins.str | None=..., additional_fragments: collections.abc.Iterable[global___AdditionalFragment] | None=...) -> None:
|
|
3097
|
+
...
|
|
3098
|
+
|
|
3099
|
+
def HasField(self, field_name: typing.Literal['_fragment_id', b'_fragment_id', 'fragment_id', b'fragment_id']) -> builtins.bool:
|
|
3100
|
+
...
|
|
3101
|
+
|
|
3102
|
+
def ClearField(self, field_name: typing.Literal['_fragment_id', b'_fragment_id', 'additional_fragments', b'additional_fragments', 'fragment_id', b'fragment_id']) -> None:
|
|
3103
|
+
...
|
|
3104
|
+
|
|
3105
|
+
def WhichOneof(self, oneof_group: typing.Literal['_fragment_id', b'_fragment_id']) -> typing.Literal['fragment_id'] | None:
|
|
3106
|
+
...
|
|
3107
|
+
global___ListNestedFragmentsRequest = ListNestedFragmentsRequest
|
|
3108
|
+
|
|
3109
|
+
@typing.final
|
|
3110
|
+
class ListNestedFragmentsResponse(google.protobuf.message.Message):
|
|
3111
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3112
|
+
FRAGMENTS_FIELD_NUMBER: builtins.int
|
|
3113
|
+
RESOLVED_FRAGMENTS_FIELD_NUMBER: builtins.int
|
|
3114
|
+
|
|
3115
|
+
@property
|
|
3116
|
+
def fragments(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Fragment]:
|
|
3117
|
+
...
|
|
3118
|
+
|
|
3119
|
+
@property
|
|
3120
|
+
def resolved_fragments(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ResolvedFragment]:
|
|
3121
|
+
...
|
|
3122
|
+
|
|
3123
|
+
def __init__(self, *, fragments: collections.abc.Iterable[global___Fragment] | None=..., resolved_fragments: collections.abc.Iterable[global___ResolvedFragment] | None=...) -> None:
|
|
3124
|
+
...
|
|
3125
|
+
|
|
3126
|
+
def ClearField(self, field_name: typing.Literal['fragments', b'fragments', 'resolved_fragments', b'resolved_fragments']) -> None:
|
|
3127
|
+
...
|
|
3128
|
+
global___ListNestedFragmentsResponse = ListNestedFragmentsResponse
|
|
3129
|
+
|
|
2886
3130
|
@typing.final
|
|
2887
3131
|
class ListMachineFragmentsRequest(google.protobuf.message.Message):
|
|
2888
3132
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -2930,6 +3174,241 @@ class ListMachineFragmentsResponse(google.protobuf.message.Message):
|
|
|
2930
3174
|
...
|
|
2931
3175
|
global___ListMachineFragmentsResponse = ListMachineFragmentsResponse
|
|
2932
3176
|
|
|
3177
|
+
@typing.final
|
|
3178
|
+
class ListMachineSummariesRequest(google.protobuf.message.Message):
|
|
3179
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3180
|
+
ORGANIZATION_ID_FIELD_NUMBER: builtins.int
|
|
3181
|
+
FRAGMENT_IDS_FIELD_NUMBER: builtins.int
|
|
3182
|
+
LOCATION_IDS_FIELD_NUMBER: builtins.int
|
|
3183
|
+
LIMIT_FIELD_NUMBER: builtins.int
|
|
3184
|
+
organization_id: builtins.str
|
|
3185
|
+
'Optional organization ID. If no value is set it will search among all the organanizations the caller has access to'
|
|
3186
|
+
limit: builtins.int
|
|
3187
|
+
'Optional max number of machines to return; default to 100 if unset'
|
|
3188
|
+
|
|
3189
|
+
@property
|
|
3190
|
+
def fragment_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
3191
|
+
"""Optional list of fragment IDs to filter machines that use any of these fragments"""
|
|
3192
|
+
|
|
3193
|
+
@property
|
|
3194
|
+
def location_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
3195
|
+
"""Optional list of location IDs to filter machines that are in any of these locations."""
|
|
3196
|
+
|
|
3197
|
+
def __init__(self, *, organization_id: builtins.str=..., fragment_ids: collections.abc.Iterable[builtins.str] | None=..., location_ids: collections.abc.Iterable[builtins.str] | None=..., limit: builtins.int | None=...) -> None:
|
|
3198
|
+
...
|
|
3199
|
+
|
|
3200
|
+
def HasField(self, field_name: typing.Literal['_limit', b'_limit', 'limit', b'limit']) -> builtins.bool:
|
|
3201
|
+
...
|
|
3202
|
+
|
|
3203
|
+
def ClearField(self, field_name: typing.Literal['_limit', b'_limit', 'fragment_ids', b'fragment_ids', 'limit', b'limit', 'location_ids', b'location_ids', 'organization_id', b'organization_id']) -> None:
|
|
3204
|
+
...
|
|
3205
|
+
|
|
3206
|
+
def WhichOneof(self, oneof_group: typing.Literal['_limit', b'_limit']) -> typing.Literal['limit'] | None:
|
|
3207
|
+
...
|
|
3208
|
+
global___ListMachineSummariesRequest = ListMachineSummariesRequest
|
|
3209
|
+
|
|
3210
|
+
@typing.final
|
|
3211
|
+
class ListMachineSummariesResponse(google.protobuf.message.Message):
|
|
3212
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3213
|
+
LOCATION_SUMMARIES_FIELD_NUMBER: builtins.int
|
|
3214
|
+
|
|
3215
|
+
@property
|
|
3216
|
+
def location_summaries(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___LocationSummary]:
|
|
3217
|
+
...
|
|
3218
|
+
|
|
3219
|
+
def __init__(self, *, location_summaries: collections.abc.Iterable[global___LocationSummary] | None=...) -> None:
|
|
3220
|
+
...
|
|
3221
|
+
|
|
3222
|
+
def ClearField(self, field_name: typing.Literal['location_summaries', b'location_summaries']) -> None:
|
|
3223
|
+
...
|
|
3224
|
+
global___ListMachineSummariesResponse = ListMachineSummariesResponse
|
|
3225
|
+
|
|
3226
|
+
@typing.final
|
|
3227
|
+
class LocationSummary(google.protobuf.message.Message):
|
|
3228
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3229
|
+
LOCATION_ID_FIELD_NUMBER: builtins.int
|
|
3230
|
+
LOCATION_NAME_FIELD_NUMBER: builtins.int
|
|
3231
|
+
MACHINE_SUMMARIES_FIELD_NUMBER: builtins.int
|
|
3232
|
+
location_id: builtins.str
|
|
3233
|
+
location_name: builtins.str
|
|
3234
|
+
|
|
3235
|
+
@property
|
|
3236
|
+
def machine_summaries(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___MachineSummary]:
|
|
3237
|
+
...
|
|
3238
|
+
|
|
3239
|
+
def __init__(self, *, location_id: builtins.str=..., location_name: builtins.str=..., machine_summaries: collections.abc.Iterable[global___MachineSummary] | None=...) -> None:
|
|
3240
|
+
...
|
|
3241
|
+
|
|
3242
|
+
def ClearField(self, field_name: typing.Literal['location_id', b'location_id', 'location_name', b'location_name', 'machine_summaries', b'machine_summaries']) -> None:
|
|
3243
|
+
...
|
|
3244
|
+
global___LocationSummary = LocationSummary
|
|
3245
|
+
|
|
3246
|
+
@typing.final
|
|
3247
|
+
class MachineSummary(google.protobuf.message.Message):
|
|
3248
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3249
|
+
MACHINE_ID_FIELD_NUMBER: builtins.int
|
|
3250
|
+
MACHINE_NAME_FIELD_NUMBER: builtins.int
|
|
3251
|
+
PART_SUMMARIES_FIELD_NUMBER: builtins.int
|
|
3252
|
+
machine_id: builtins.str
|
|
3253
|
+
machine_name: builtins.str
|
|
3254
|
+
|
|
3255
|
+
@property
|
|
3256
|
+
def part_summaries(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___PartSummary]:
|
|
3257
|
+
...
|
|
3258
|
+
|
|
3259
|
+
def __init__(self, *, machine_id: builtins.str=..., machine_name: builtins.str=..., part_summaries: collections.abc.Iterable[global___PartSummary] | None=...) -> None:
|
|
3260
|
+
...
|
|
3261
|
+
|
|
3262
|
+
def ClearField(self, field_name: typing.Literal['machine_id', b'machine_id', 'machine_name', b'machine_name', 'part_summaries', b'part_summaries']) -> None:
|
|
3263
|
+
...
|
|
3264
|
+
global___MachineSummary = MachineSummary
|
|
3265
|
+
|
|
3266
|
+
@typing.final
|
|
3267
|
+
class FragmentSummary(google.protobuf.message.Message):
|
|
3268
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3269
|
+
ID_FIELD_NUMBER: builtins.int
|
|
3270
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
3271
|
+
id: builtins.str
|
|
3272
|
+
name: builtins.str
|
|
3273
|
+
|
|
3274
|
+
def __init__(self, *, id: builtins.str=..., name: builtins.str=...) -> None:
|
|
3275
|
+
...
|
|
3276
|
+
|
|
3277
|
+
def ClearField(self, field_name: typing.Literal['id', b'id', 'name', b'name']) -> None:
|
|
3278
|
+
...
|
|
3279
|
+
global___FragmentSummary = FragmentSummary
|
|
3280
|
+
|
|
3281
|
+
@typing.final
|
|
3282
|
+
class ViamServerVersion(google.protobuf.message.Message):
|
|
3283
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3284
|
+
MAJOR_FIELD_NUMBER: builtins.int
|
|
3285
|
+
MINOR_FIELD_NUMBER: builtins.int
|
|
3286
|
+
major: builtins.str
|
|
3287
|
+
minor: builtins.str
|
|
3288
|
+
|
|
3289
|
+
def __init__(self, *, major: builtins.str=..., minor: builtins.str=...) -> None:
|
|
3290
|
+
...
|
|
3291
|
+
|
|
3292
|
+
def HasField(self, field_name: typing.Literal['major', b'major', 'minor', b'minor', 'version', b'version']) -> builtins.bool:
|
|
3293
|
+
...
|
|
3294
|
+
|
|
3295
|
+
def ClearField(self, field_name: typing.Literal['major', b'major', 'minor', b'minor', 'version', b'version']) -> None:
|
|
3296
|
+
...
|
|
3297
|
+
|
|
3298
|
+
def WhichOneof(self, oneof_group: typing.Literal['version', b'version']) -> typing.Literal['major', 'minor'] | None:
|
|
3299
|
+
...
|
|
3300
|
+
global___ViamServerVersion = ViamServerVersion
|
|
3301
|
+
|
|
3302
|
+
@typing.final
|
|
3303
|
+
class ViamAgentVersion(google.protobuf.message.Message):
|
|
3304
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3305
|
+
MAJOR_FIELD_NUMBER: builtins.int
|
|
3306
|
+
MINOR_FIELD_NUMBER: builtins.int
|
|
3307
|
+
major: builtins.str
|
|
3308
|
+
minor: builtins.str
|
|
3309
|
+
|
|
3310
|
+
def __init__(self, *, major: builtins.str=..., minor: builtins.str=...) -> None:
|
|
3311
|
+
...
|
|
3312
|
+
|
|
3313
|
+
def HasField(self, field_name: typing.Literal['major', b'major', 'minor', b'minor', 'version', b'version']) -> builtins.bool:
|
|
3314
|
+
...
|
|
3315
|
+
|
|
3316
|
+
def ClearField(self, field_name: typing.Literal['major', b'major', 'minor', b'minor', 'version', b'version']) -> None:
|
|
3317
|
+
...
|
|
3318
|
+
|
|
3319
|
+
def WhichOneof(self, oneof_group: typing.Literal['version', b'version']) -> typing.Literal['major', 'minor'] | None:
|
|
3320
|
+
...
|
|
3321
|
+
global___ViamAgentVersion = ViamAgentVersion
|
|
3322
|
+
|
|
3323
|
+
@typing.final
|
|
3324
|
+
class PartSummary(google.protobuf.message.Message):
|
|
3325
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3326
|
+
PART_ID_FIELD_NUMBER: builtins.int
|
|
3327
|
+
PART_NAME_FIELD_NUMBER: builtins.int
|
|
3328
|
+
IS_MAIN_PART_FIELD_NUMBER: builtins.int
|
|
3329
|
+
ONLINE_STATE_FIELD_NUMBER: builtins.int
|
|
3330
|
+
SECONDS_SINCE_ONLINE_FIELD_NUMBER: builtins.int
|
|
3331
|
+
LAST_ACCESS_FIELD_NUMBER: builtins.int
|
|
3332
|
+
LAST_ONLINE_FIELD_NUMBER: builtins.int
|
|
3333
|
+
VIAM_SERVER_VERSION_FIELD_NUMBER: builtins.int
|
|
3334
|
+
VIAM_AGENT_VERSION_FIELD_NUMBER: builtins.int
|
|
3335
|
+
OS_FIELD_NUMBER: builtins.int
|
|
3336
|
+
PLATFORM_FIELD_NUMBER: builtins.int
|
|
3337
|
+
PUBLIC_IP_ADDRESS_FIELD_NUMBER: builtins.int
|
|
3338
|
+
DNS_NAME_FIELD_NUMBER: builtins.int
|
|
3339
|
+
FRAGMENTS_FIELD_NUMBER: builtins.int
|
|
3340
|
+
part_id: builtins.str
|
|
3341
|
+
part_name: builtins.str
|
|
3342
|
+
is_main_part: builtins.bool
|
|
3343
|
+
online_state: global___OnlineState.ValueType
|
|
3344
|
+
seconds_since_online: builtins.int
|
|
3345
|
+
os: builtins.str
|
|
3346
|
+
platform: builtins.str
|
|
3347
|
+
public_ip_address: builtins.str
|
|
3348
|
+
dns_name: builtins.str
|
|
3349
|
+
|
|
3350
|
+
@property
|
|
3351
|
+
def last_access(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
3352
|
+
...
|
|
3353
|
+
|
|
3354
|
+
@property
|
|
3355
|
+
def last_online(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
3356
|
+
...
|
|
3357
|
+
|
|
3358
|
+
@property
|
|
3359
|
+
def viam_server_version(self) -> global___ViamServerVersion:
|
|
3360
|
+
...
|
|
3361
|
+
|
|
3362
|
+
@property
|
|
3363
|
+
def viam_agent_version(self) -> global___ViamAgentVersion:
|
|
3364
|
+
...
|
|
3365
|
+
|
|
3366
|
+
@property
|
|
3367
|
+
def fragments(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FragmentSummary]:
|
|
3368
|
+
...
|
|
3369
|
+
|
|
3370
|
+
def __init__(self, *, part_id: builtins.str=..., part_name: builtins.str=..., is_main_part: builtins.bool=..., online_state: global___OnlineState.ValueType=..., seconds_since_online: builtins.int=..., last_access: google.protobuf.timestamp_pb2.Timestamp | None=..., last_online: google.protobuf.timestamp_pb2.Timestamp | None=..., viam_server_version: global___ViamServerVersion | None=..., viam_agent_version: global___ViamAgentVersion | None=..., os: builtins.str | None=..., platform: builtins.str | None=..., public_ip_address: builtins.str | None=..., dns_name: builtins.str | None=..., fragments: collections.abc.Iterable[global___FragmentSummary] | None=...) -> None:
|
|
3371
|
+
...
|
|
3372
|
+
|
|
3373
|
+
def HasField(self, field_name: typing.Literal['_dns_name', b'_dns_name', '_last_access', b'_last_access', '_last_online', b'_last_online', '_os', b'_os', '_platform', b'_platform', '_public_ip_address', b'_public_ip_address', '_viam_agent_version', b'_viam_agent_version', '_viam_server_version', b'_viam_server_version', 'dns_name', b'dns_name', 'last_access', b'last_access', 'last_online', b'last_online', 'os', b'os', 'platform', b'platform', 'public_ip_address', b'public_ip_address', 'viam_agent_version', b'viam_agent_version', 'viam_server_version', b'viam_server_version']) -> builtins.bool:
|
|
3374
|
+
...
|
|
3375
|
+
|
|
3376
|
+
def ClearField(self, field_name: typing.Literal['_dns_name', b'_dns_name', '_last_access', b'_last_access', '_last_online', b'_last_online', '_os', b'_os', '_platform', b'_platform', '_public_ip_address', b'_public_ip_address', '_viam_agent_version', b'_viam_agent_version', '_viam_server_version', b'_viam_server_version', 'dns_name', b'dns_name', 'fragments', b'fragments', 'is_main_part', b'is_main_part', 'last_access', b'last_access', 'last_online', b'last_online', 'online_state', b'online_state', 'os', b'os', 'part_id', b'part_id', 'part_name', b'part_name', 'platform', b'platform', 'public_ip_address', b'public_ip_address', 'seconds_since_online', b'seconds_since_online', 'viam_agent_version', b'viam_agent_version', 'viam_server_version', b'viam_server_version']) -> None:
|
|
3377
|
+
...
|
|
3378
|
+
|
|
3379
|
+
@typing.overload
|
|
3380
|
+
def WhichOneof(self, oneof_group: typing.Literal['_dns_name', b'_dns_name']) -> typing.Literal['dns_name'] | None:
|
|
3381
|
+
...
|
|
3382
|
+
|
|
3383
|
+
@typing.overload
|
|
3384
|
+
def WhichOneof(self, oneof_group: typing.Literal['_last_access', b'_last_access']) -> typing.Literal['last_access'] | None:
|
|
3385
|
+
...
|
|
3386
|
+
|
|
3387
|
+
@typing.overload
|
|
3388
|
+
def WhichOneof(self, oneof_group: typing.Literal['_last_online', b'_last_online']) -> typing.Literal['last_online'] | None:
|
|
3389
|
+
...
|
|
3390
|
+
|
|
3391
|
+
@typing.overload
|
|
3392
|
+
def WhichOneof(self, oneof_group: typing.Literal['_os', b'_os']) -> typing.Literal['os'] | None:
|
|
3393
|
+
...
|
|
3394
|
+
|
|
3395
|
+
@typing.overload
|
|
3396
|
+
def WhichOneof(self, oneof_group: typing.Literal['_platform', b'_platform']) -> typing.Literal['platform'] | None:
|
|
3397
|
+
...
|
|
3398
|
+
|
|
3399
|
+
@typing.overload
|
|
3400
|
+
def WhichOneof(self, oneof_group: typing.Literal['_public_ip_address', b'_public_ip_address']) -> typing.Literal['public_ip_address'] | None:
|
|
3401
|
+
...
|
|
3402
|
+
|
|
3403
|
+
@typing.overload
|
|
3404
|
+
def WhichOneof(self, oneof_group: typing.Literal['_viam_agent_version', b'_viam_agent_version']) -> typing.Literal['viam_agent_version'] | None:
|
|
3405
|
+
...
|
|
3406
|
+
|
|
3407
|
+
@typing.overload
|
|
3408
|
+
def WhichOneof(self, oneof_group: typing.Literal['_viam_server_version', b'_viam_server_version']) -> typing.Literal['viam_server_version'] | None:
|
|
3409
|
+
...
|
|
3410
|
+
global___PartSummary = PartSummary
|
|
3411
|
+
|
|
2933
3412
|
@typing.final
|
|
2934
3413
|
class ListRobotsResponse(google.protobuf.message.Message):
|
|
2935
3414
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -2946,6 +3425,38 @@ class ListRobotsResponse(google.protobuf.message.Message):
|
|
|
2946
3425
|
...
|
|
2947
3426
|
global___ListRobotsResponse = ListRobotsResponse
|
|
2948
3427
|
|
|
3428
|
+
@typing.final
|
|
3429
|
+
class ListRobotsForLocationsResponse(google.protobuf.message.Message):
|
|
3430
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3431
|
+
ROBOTS_FIELD_NUMBER: builtins.int
|
|
3432
|
+
|
|
3433
|
+
@property
|
|
3434
|
+
def robots(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Robot]:
|
|
3435
|
+
...
|
|
3436
|
+
|
|
3437
|
+
def __init__(self, *, robots: collections.abc.Iterable[global___Robot] | None=...) -> None:
|
|
3438
|
+
...
|
|
3439
|
+
|
|
3440
|
+
def ClearField(self, field_name: typing.Literal['robots', b'robots']) -> None:
|
|
3441
|
+
...
|
|
3442
|
+
global___ListRobotsForLocationsResponse = ListRobotsForLocationsResponse
|
|
3443
|
+
|
|
3444
|
+
@typing.final
|
|
3445
|
+
class ListRobotsForOrgResponse(google.protobuf.message.Message):
|
|
3446
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3447
|
+
ROBOTS_FIELD_NUMBER: builtins.int
|
|
3448
|
+
|
|
3449
|
+
@property
|
|
3450
|
+
def robots(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Robot]:
|
|
3451
|
+
...
|
|
3452
|
+
|
|
3453
|
+
def __init__(self, *, robots: collections.abc.Iterable[global___Robot] | None=...) -> None:
|
|
3454
|
+
...
|
|
3455
|
+
|
|
3456
|
+
def ClearField(self, field_name: typing.Literal['robots', b'robots']) -> None:
|
|
3457
|
+
...
|
|
3458
|
+
global___ListRobotsForOrgResponse = ListRobotsForOrgResponse
|
|
3459
|
+
|
|
2949
3460
|
@typing.final
|
|
2950
3461
|
class NewRobotRequest(google.protobuf.message.Message):
|
|
2951
3462
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -3033,47 +3544,30 @@ global___DeleteRobotResponse = DeleteRobotResponse
|
|
|
3033
3544
|
|
|
3034
3545
|
@typing.final
|
|
3035
3546
|
class GetRobotMetadataRequest(google.protobuf.message.Message):
|
|
3036
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3037
|
-
ID_FIELD_NUMBER: builtins.int
|
|
3038
|
-
id: builtins.str
|
|
3039
|
-
|
|
3040
|
-
def __init__(self, *, id: builtins.str=...) -> None:
|
|
3041
|
-
...
|
|
3042
|
-
|
|
3043
|
-
def ClearField(self, field_name: typing.Literal['id', b'id']) -> None:
|
|
3044
|
-
...
|
|
3045
|
-
global___GetRobotMetadataRequest = GetRobotMetadataRequest
|
|
3046
|
-
|
|
3047
|
-
@typing.final
|
|
3048
|
-
class GetRobotMetadataResponse(google.protobuf.message.Message):
|
|
3049
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3050
|
-
|
|
3051
|
-
@typing.final
|
|
3052
|
-
class DataEntry(google.protobuf.message.Message):
|
|
3053
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3054
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
3055
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
3056
|
-
key: builtins.str
|
|
3057
|
-
|
|
3058
|
-
@property
|
|
3059
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
3060
|
-
...
|
|
3547
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3548
|
+
ID_FIELD_NUMBER: builtins.int
|
|
3549
|
+
id: builtins.str
|
|
3061
3550
|
|
|
3062
|
-
|
|
3063
|
-
|
|
3551
|
+
def __init__(self, *, id: builtins.str=...) -> None:
|
|
3552
|
+
...
|
|
3064
3553
|
|
|
3065
|
-
|
|
3066
|
-
|
|
3554
|
+
def ClearField(self, field_name: typing.Literal['id', b'id']) -> None:
|
|
3555
|
+
...
|
|
3556
|
+
global___GetRobotMetadataRequest = GetRobotMetadataRequest
|
|
3067
3557
|
|
|
3068
|
-
|
|
3069
|
-
|
|
3558
|
+
@typing.final
|
|
3559
|
+
class GetRobotMetadataResponse(google.protobuf.message.Message):
|
|
3560
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3070
3561
|
DATA_FIELD_NUMBER: builtins.int
|
|
3071
3562
|
|
|
3072
3563
|
@property
|
|
3073
|
-
def data(self) -> google.protobuf.
|
|
3564
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
3074
3565
|
...
|
|
3075
3566
|
|
|
3076
|
-
def __init__(self, *, data:
|
|
3567
|
+
def __init__(self, *, data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
3568
|
+
...
|
|
3569
|
+
|
|
3570
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
3077
3571
|
...
|
|
3078
3572
|
|
|
3079
3573
|
def ClearField(self, field_name: typing.Literal['data', b'data']) -> None:
|
|
@@ -3083,35 +3577,18 @@ global___GetRobotMetadataResponse = GetRobotMetadataResponse
|
|
|
3083
3577
|
@typing.final
|
|
3084
3578
|
class UpdateRobotMetadataRequest(google.protobuf.message.Message):
|
|
3085
3579
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3086
|
-
|
|
3087
|
-
@typing.final
|
|
3088
|
-
class DataEntry(google.protobuf.message.Message):
|
|
3089
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3090
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
3091
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
3092
|
-
key: builtins.str
|
|
3093
|
-
|
|
3094
|
-
@property
|
|
3095
|
-
def value(self) -> google.protobuf.any_pb2.Any:
|
|
3096
|
-
...
|
|
3097
|
-
|
|
3098
|
-
def __init__(self, *, key: builtins.str=..., value: google.protobuf.any_pb2.Any | None=...) -> None:
|
|
3099
|
-
...
|
|
3100
|
-
|
|
3101
|
-
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
3102
|
-
...
|
|
3103
|
-
|
|
3104
|
-
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
3105
|
-
...
|
|
3106
3580
|
ID_FIELD_NUMBER: builtins.int
|
|
3107
3581
|
DATA_FIELD_NUMBER: builtins.int
|
|
3108
3582
|
id: builtins.str
|
|
3109
3583
|
|
|
3110
3584
|
@property
|
|
3111
|
-
def data(self) -> google.protobuf.
|
|
3585
|
+
def data(self) -> google.protobuf.struct_pb2.Struct:
|
|
3586
|
+
...
|
|
3587
|
+
|
|
3588
|
+
def __init__(self, *, id: builtins.str=..., data: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
3112
3589
|
...
|
|
3113
3590
|
|
|
3114
|
-
def
|
|
3591
|
+
def HasField(self, field_name: typing.Literal['data', b'data']) -> builtins.bool:
|
|
3115
3592
|
...
|
|
3116
3593
|
|
|
3117
3594
|
def ClearField(self, field_name: typing.Literal['data', b'data', 'id', b'id']) -> None:
|
|
@@ -3429,12 +3906,16 @@ class ModuleVersion(google.protobuf.message.Message):
|
|
|
3429
3906
|
MODELS_FIELD_NUMBER: builtins.int
|
|
3430
3907
|
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
3431
3908
|
FIRST_RUN_FIELD_NUMBER: builtins.int
|
|
3909
|
+
MARKDOWN_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
3910
|
+
APPS_FIELD_NUMBER: builtins.int
|
|
3432
3911
|
version: builtins.str
|
|
3433
3912
|
'The semver string that represents the major/minor/patch version of the module'
|
|
3434
3913
|
entrypoint: builtins.str
|
|
3435
3914
|
'The entrypoint for this version of the module'
|
|
3436
3915
|
first_run: builtins.str
|
|
3437
3916
|
'The path to a setup script that is run before a newly downloaded module starts.'
|
|
3917
|
+
markdown_description: builtins.str
|
|
3918
|
+
'The markdown documentation for this version of the module'
|
|
3438
3919
|
|
|
3439
3920
|
@property
|
|
3440
3921
|
def files(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Uploads]:
|
|
@@ -3444,17 +3925,26 @@ class ModuleVersion(google.protobuf.message.Message):
|
|
|
3444
3925
|
def models(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Model]:
|
|
3445
3926
|
"""The models that this verion of the module provides"""
|
|
3446
3927
|
|
|
3447
|
-
|
|
3928
|
+
@property
|
|
3929
|
+
def apps(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___App]:
|
|
3930
|
+
"""A list of applications associated with the module"""
|
|
3931
|
+
|
|
3932
|
+
def __init__(self, *, version: builtins.str=..., files: collections.abc.Iterable[global___Uploads] | None=..., models: collections.abc.Iterable[global___Model] | None=..., entrypoint: builtins.str=..., first_run: builtins.str | None=..., markdown_description: builtins.str | None=..., apps: collections.abc.Iterable[global___App] | None=...) -> None:
|
|
3448
3933
|
...
|
|
3449
3934
|
|
|
3450
|
-
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', 'first_run', b'first_run']) -> builtins.bool:
|
|
3935
|
+
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'first_run', b'first_run', 'markdown_description', b'markdown_description']) -> builtins.bool:
|
|
3451
3936
|
...
|
|
3452
3937
|
|
|
3453
|
-
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', 'entrypoint', b'entrypoint', 'files', b'files', 'first_run', b'first_run', 'models', b'models', 'version', b'version']) -> None:
|
|
3938
|
+
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'apps', b'apps', 'entrypoint', b'entrypoint', 'files', b'files', 'first_run', b'first_run', 'markdown_description', b'markdown_description', 'models', b'models', 'version', b'version']) -> None:
|
|
3454
3939
|
...
|
|
3455
3940
|
|
|
3941
|
+
@typing.overload
|
|
3456
3942
|
def WhichOneof(self, oneof_group: typing.Literal['_first_run', b'_first_run']) -> typing.Literal['first_run'] | None:
|
|
3457
3943
|
...
|
|
3944
|
+
|
|
3945
|
+
@typing.overload
|
|
3946
|
+
def WhichOneof(self, oneof_group: typing.Literal['_markdown_description', b'_markdown_description']) -> typing.Literal['markdown_description'] | None:
|
|
3947
|
+
...
|
|
3458
3948
|
global___ModuleVersion = ModuleVersion
|
|
3459
3949
|
|
|
3460
3950
|
@typing.final
|
|
@@ -3464,10 +3954,20 @@ class ModuleMetadata(google.protobuf.message.Message):
|
|
|
3464
3954
|
VERSIONS_FIELD_NUMBER: builtins.int
|
|
3465
3955
|
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
3466
3956
|
FIRST_RUN_FIELD_NUMBER: builtins.int
|
|
3957
|
+
MARKDOWN_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
3958
|
+
APPS_FIELD_NUMBER: builtins.int
|
|
3959
|
+
SOURCE_TYPE_FIELD_NUMBER: builtins.int
|
|
3960
|
+
LANGUAGE_FIELD_NUMBER: builtins.int
|
|
3467
3961
|
entrypoint: builtins.str
|
|
3468
3962
|
'The executable to run to start the module program'
|
|
3469
3963
|
first_run: builtins.str
|
|
3470
3964
|
'The path to a setup script that is run before a newly downloaded module starts.'
|
|
3965
|
+
markdown_description: builtins.str
|
|
3966
|
+
'markdown content for the entire module'
|
|
3967
|
+
source_type: global___ModuleSourceType.ValueType
|
|
3968
|
+
'Determines the type of module, either a registry module or an inline module.'
|
|
3969
|
+
language: global___ModuleLanguage.ValueType
|
|
3970
|
+
'Specifies the language that the module is written in.'
|
|
3471
3971
|
|
|
3472
3972
|
@property
|
|
3473
3973
|
def models(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Model]:
|
|
@@ -3479,17 +3979,34 @@ class ModuleMetadata(google.protobuf.message.Message):
|
|
|
3479
3979
|
When this is returned from the backend, the versions are sorted in ascending order by the semver version
|
|
3480
3980
|
"""
|
|
3481
3981
|
|
|
3482
|
-
|
|
3982
|
+
@property
|
|
3983
|
+
def apps(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___App]:
|
|
3984
|
+
"""A list of applications associated with the module"""
|
|
3985
|
+
|
|
3986
|
+
def __init__(self, *, models: collections.abc.Iterable[global___Model] | None=..., versions: collections.abc.Iterable[global___ModuleVersion] | None=..., entrypoint: builtins.str=..., first_run: builtins.str | None=..., markdown_description: builtins.str | None=..., apps: collections.abc.Iterable[global___App] | None=..., source_type: global___ModuleSourceType.ValueType | None=..., language: global___ModuleLanguage.ValueType | None=...) -> None:
|
|
3483
3987
|
...
|
|
3484
3988
|
|
|
3485
|
-
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', 'first_run', b'first_run']) -> builtins.bool:
|
|
3989
|
+
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', '_language', b'_language', '_markdown_description', b'_markdown_description', '_source_type', b'_source_type', 'first_run', b'first_run', 'language', b'language', 'markdown_description', b'markdown_description', 'source_type', b'source_type']) -> builtins.bool:
|
|
3486
3990
|
...
|
|
3487
3991
|
|
|
3488
|
-
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', 'entrypoint', b'entrypoint', 'first_run', b'first_run', 'models', b'models', 'versions', b'versions']) -> None:
|
|
3992
|
+
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', '_language', b'_language', '_markdown_description', b'_markdown_description', '_source_type', b'_source_type', 'apps', b'apps', 'entrypoint', b'entrypoint', 'first_run', b'first_run', 'language', b'language', 'markdown_description', b'markdown_description', 'models', b'models', 'source_type', b'source_type', 'versions', b'versions']) -> None:
|
|
3489
3993
|
...
|
|
3490
3994
|
|
|
3995
|
+
@typing.overload
|
|
3491
3996
|
def WhichOneof(self, oneof_group: typing.Literal['_first_run', b'_first_run']) -> typing.Literal['first_run'] | None:
|
|
3492
3997
|
...
|
|
3998
|
+
|
|
3999
|
+
@typing.overload
|
|
4000
|
+
def WhichOneof(self, oneof_group: typing.Literal['_language', b'_language']) -> typing.Literal['language'] | None:
|
|
4001
|
+
...
|
|
4002
|
+
|
|
4003
|
+
@typing.overload
|
|
4004
|
+
def WhichOneof(self, oneof_group: typing.Literal['_markdown_description', b'_markdown_description']) -> typing.Literal['markdown_description'] | None:
|
|
4005
|
+
...
|
|
4006
|
+
|
|
4007
|
+
@typing.overload
|
|
4008
|
+
def WhichOneof(self, oneof_group: typing.Literal['_source_type', b'_source_type']) -> typing.Literal['source_type'] | None:
|
|
4009
|
+
...
|
|
3493
4010
|
global___ModuleMetadata = ModuleMetadata
|
|
3494
4011
|
|
|
3495
4012
|
@typing.final
|
|
@@ -3709,34 +4226,40 @@ class UpdateRegistryItemRequest(google.protobuf.message.Message):
|
|
|
3709
4226
|
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
3710
4227
|
VISIBILITY_FIELD_NUMBER: builtins.int
|
|
3711
4228
|
URL_FIELD_NUMBER: builtins.int
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
4229
|
+
UPDATE_MODULE_METADATA_FIELD_NUMBER: builtins.int
|
|
4230
|
+
UPDATE_ML_MODEL_METADATA_FIELD_NUMBER: builtins.int
|
|
4231
|
+
UPDATE_ML_TRAINING_METADATA_FIELD_NUMBER: builtins.int
|
|
4232
|
+
MARKDOWN_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
3715
4233
|
item_id: builtins.str
|
|
3716
4234
|
type: app.packages.v1.packages_pb2.PackageType.ValueType
|
|
3717
4235
|
description: builtins.str
|
|
3718
4236
|
visibility: global___Visibility.ValueType
|
|
3719
4237
|
url: builtins.str
|
|
4238
|
+
markdown_description: builtins.str
|
|
3720
4239
|
|
|
3721
4240
|
@property
|
|
3722
|
-
def
|
|
4241
|
+
def update_module_metadata(self) -> global___UpdateModuleMetadata:
|
|
3723
4242
|
...
|
|
3724
4243
|
|
|
3725
4244
|
@property
|
|
3726
|
-
def
|
|
4245
|
+
def update_ml_model_metadata(self) -> global___UpdateMLModelMetadata:
|
|
3727
4246
|
...
|
|
3728
4247
|
|
|
3729
4248
|
@property
|
|
3730
|
-
def
|
|
4249
|
+
def update_ml_training_metadata(self) -> global___UpdateMLTrainingMetadata:
|
|
4250
|
+
...
|
|
4251
|
+
|
|
4252
|
+
def __init__(self, *, item_id: builtins.str=..., type: app.packages.v1.packages_pb2.PackageType.ValueType=..., description: builtins.str=..., visibility: global___Visibility.ValueType=..., url: builtins.str | None=..., update_module_metadata: global___UpdateModuleMetadata | None=..., update_ml_model_metadata: global___UpdateMLModelMetadata | None=..., update_ml_training_metadata: global___UpdateMLTrainingMetadata | None=..., markdown_description: builtins.str | None=...) -> None:
|
|
3731
4253
|
...
|
|
3732
4254
|
|
|
3733
|
-
def
|
|
4255
|
+
def HasField(self, field_name: typing.Literal['_markdown_description', b'_markdown_description', '_url', b'_url', 'markdown_description', b'markdown_description', 'metadata', b'metadata', 'update_ml_model_metadata', b'update_ml_model_metadata', 'update_ml_training_metadata', b'update_ml_training_metadata', 'update_module_metadata', b'update_module_metadata', 'url', b'url']) -> builtins.bool:
|
|
3734
4256
|
...
|
|
3735
4257
|
|
|
3736
|
-
def
|
|
4258
|
+
def ClearField(self, field_name: typing.Literal['_markdown_description', b'_markdown_description', '_url', b'_url', 'description', b'description', 'item_id', b'item_id', 'markdown_description', b'markdown_description', 'metadata', b'metadata', 'type', b'type', 'update_ml_model_metadata', b'update_ml_model_metadata', 'update_ml_training_metadata', b'update_ml_training_metadata', 'update_module_metadata', b'update_module_metadata', 'url', b'url', 'visibility', b'visibility']) -> None:
|
|
3737
4259
|
...
|
|
3738
4260
|
|
|
3739
|
-
|
|
4261
|
+
@typing.overload
|
|
4262
|
+
def WhichOneof(self, oneof_group: typing.Literal['_markdown_description', b'_markdown_description']) -> typing.Literal['markdown_description'] | None:
|
|
3740
4263
|
...
|
|
3741
4264
|
|
|
3742
4265
|
@typing.overload
|
|
@@ -3744,7 +4267,7 @@ class UpdateRegistryItemRequest(google.protobuf.message.Message):
|
|
|
3744
4267
|
...
|
|
3745
4268
|
|
|
3746
4269
|
@typing.overload
|
|
3747
|
-
def WhichOneof(self, oneof_group: typing.Literal['metadata', b'metadata']) -> typing.Literal['
|
|
4270
|
+
def WhichOneof(self, oneof_group: typing.Literal['metadata', b'metadata']) -> typing.Literal['update_module_metadata', 'update_ml_model_metadata', 'update_ml_training_metadata'] | None:
|
|
3748
4271
|
...
|
|
3749
4272
|
global___UpdateRegistryItemRequest = UpdateRegistryItemRequest
|
|
3750
4273
|
|
|
@@ -3768,6 +4291,8 @@ class ListRegistryItemsRequest(google.protobuf.message.Message):
|
|
|
3768
4291
|
PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
3769
4292
|
PUBLIC_NAMESPACES_FIELD_NUMBER: builtins.int
|
|
3770
4293
|
INCLUDE_MARKDOWN_DOCUMENTATION_FIELD_NUMBER: builtins.int
|
|
4294
|
+
MODULE_SOURCE_TYPES_FIELD_NUMBER: builtins.int
|
|
4295
|
+
MODULE_LANGUAGES_FIELD_NUMBER: builtins.int
|
|
3771
4296
|
organization_id: builtins.str
|
|
3772
4297
|
'The id of the organization to return registry items for.'
|
|
3773
4298
|
search_term: builtins.str
|
|
@@ -3794,13 +4319,21 @@ class ListRegistryItemsRequest(google.protobuf.message.Message):
|
|
|
3794
4319
|
def public_namespaces(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
3795
4320
|
"""One or more public namespaces to return results for."""
|
|
3796
4321
|
|
|
3797
|
-
|
|
4322
|
+
@property
|
|
4323
|
+
def module_source_types(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[global___ModuleSourceType.ValueType]:
|
|
4324
|
+
...
|
|
4325
|
+
|
|
4326
|
+
@property
|
|
4327
|
+
def module_languages(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[global___ModuleLanguage.ValueType]:
|
|
4328
|
+
...
|
|
4329
|
+
|
|
4330
|
+
def __init__(self, *, organization_id: builtins.str | None=..., types: collections.abc.Iterable[app.packages.v1.packages_pb2.PackageType.ValueType] | None=..., visibilities: collections.abc.Iterable[global___Visibility.ValueType] | None=..., platforms: collections.abc.Iterable[builtins.str] | None=..., statuses: collections.abc.Iterable[global___RegistryItemStatus.ValueType] | None=..., search_term: builtins.str | None=..., page_token: builtins.str | None=..., public_namespaces: collections.abc.Iterable[builtins.str] | None=..., include_markdown_documentation: builtins.bool | None=..., module_source_types: collections.abc.Iterable[global___ModuleSourceType.ValueType] | None=..., module_languages: collections.abc.Iterable[global___ModuleLanguage.ValueType] | None=...) -> None:
|
|
3798
4331
|
...
|
|
3799
4332
|
|
|
3800
4333
|
def HasField(self, field_name: typing.Literal['_include_markdown_documentation', b'_include_markdown_documentation', '_organization_id', b'_organization_id', '_page_token', b'_page_token', '_search_term', b'_search_term', 'include_markdown_documentation', b'include_markdown_documentation', 'organization_id', b'organization_id', 'page_token', b'page_token', 'search_term', b'search_term']) -> builtins.bool:
|
|
3801
4334
|
...
|
|
3802
4335
|
|
|
3803
|
-
def ClearField(self, field_name: typing.Literal['_include_markdown_documentation', b'_include_markdown_documentation', '_organization_id', b'_organization_id', '_page_token', b'_page_token', '_search_term', b'_search_term', 'include_markdown_documentation', b'include_markdown_documentation', 'organization_id', b'organization_id', 'page_token', b'page_token', 'platforms', b'platforms', 'public_namespaces', b'public_namespaces', 'search_term', b'search_term', 'statuses', b'statuses', 'types', b'types', 'visibilities', b'visibilities']) -> None:
|
|
4336
|
+
def ClearField(self, field_name: typing.Literal['_include_markdown_documentation', b'_include_markdown_documentation', '_organization_id', b'_organization_id', '_page_token', b'_page_token', '_search_term', b'_search_term', 'include_markdown_documentation', b'include_markdown_documentation', 'module_languages', b'module_languages', 'module_source_types', b'module_source_types', 'organization_id', b'organization_id', 'page_token', b'page_token', 'platforms', b'platforms', 'public_namespaces', b'public_namespaces', 'search_term', b'search_term', 'statuses', b'statuses', 'types', b'types', 'visibilities', b'visibilities']) -> None:
|
|
3804
4337
|
...
|
|
3805
4338
|
|
|
3806
4339
|
@typing.overload
|
|
@@ -3858,6 +4391,40 @@ class DeleteRegistryItemResponse(google.protobuf.message.Message):
|
|
|
3858
4391
|
...
|
|
3859
4392
|
global___DeleteRegistryItemResponse = DeleteRegistryItemResponse
|
|
3860
4393
|
|
|
4394
|
+
@typing.final
|
|
4395
|
+
class RenameRegistryItemRequest(google.protobuf.message.Message):
|
|
4396
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
4397
|
+
ITEM_ID_FIELD_NUMBER: builtins.int
|
|
4398
|
+
NEW_NAME_FIELD_NUMBER: builtins.int
|
|
4399
|
+
item_id: builtins.str
|
|
4400
|
+
new_name: builtins.str
|
|
4401
|
+
|
|
4402
|
+
def __init__(self, *, item_id: builtins.str=..., new_name: builtins.str=...) -> None:
|
|
4403
|
+
...
|
|
4404
|
+
|
|
4405
|
+
def ClearField(self, field_name: typing.Literal['item_id', b'item_id', 'new_name', b'new_name']) -> None:
|
|
4406
|
+
...
|
|
4407
|
+
global___RenameRegistryItemRequest = RenameRegistryItemRequest
|
|
4408
|
+
|
|
4409
|
+
@typing.final
|
|
4410
|
+
class RenameRegistryItemResponse(google.protobuf.message.Message):
|
|
4411
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
4412
|
+
ITEM_FIELD_NUMBER: builtins.int
|
|
4413
|
+
|
|
4414
|
+
@property
|
|
4415
|
+
def item(self) -> global___RegistryItem:
|
|
4416
|
+
...
|
|
4417
|
+
|
|
4418
|
+
def __init__(self, *, item: global___RegistryItem | None=...) -> None:
|
|
4419
|
+
...
|
|
4420
|
+
|
|
4421
|
+
def HasField(self, field_name: typing.Literal['item', b'item']) -> builtins.bool:
|
|
4422
|
+
...
|
|
4423
|
+
|
|
4424
|
+
def ClearField(self, field_name: typing.Literal['item', b'item']) -> None:
|
|
4425
|
+
...
|
|
4426
|
+
global___RenameRegistryItemResponse = RenameRegistryItemResponse
|
|
4427
|
+
|
|
3861
4428
|
@typing.final
|
|
3862
4429
|
class TransferRegistryItemRequest(google.protobuf.message.Message):
|
|
3863
4430
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -3926,6 +4493,8 @@ class UpdateModuleRequest(google.protobuf.message.Message):
|
|
|
3926
4493
|
MODELS_FIELD_NUMBER: builtins.int
|
|
3927
4494
|
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
3928
4495
|
FIRST_RUN_FIELD_NUMBER: builtins.int
|
|
4496
|
+
APPS_FIELD_NUMBER: builtins.int
|
|
4497
|
+
MARKDOWN_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
3929
4498
|
module_id: builtins.str
|
|
3930
4499
|
"The id of the module (formatted as prefix:name where prefix is the module owner's orgid or namespace)"
|
|
3931
4500
|
visibility: global___Visibility.ValueType
|
|
@@ -3938,24 +4507,74 @@ class UpdateModuleRequest(google.protobuf.message.Message):
|
|
|
3938
4507
|
'The executable to run to start the module program'
|
|
3939
4508
|
first_run: builtins.str
|
|
3940
4509
|
'The path to a setup script that is run before a newly downloaded module starts.'
|
|
4510
|
+
markdown_description: builtins.str
|
|
4511
|
+
'longer documentation provided in markdown format'
|
|
3941
4512
|
|
|
3942
4513
|
@property
|
|
3943
4514
|
def models(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Model]:
|
|
3944
4515
|
"""A list of models that are available in the module"""
|
|
3945
4516
|
|
|
3946
|
-
|
|
4517
|
+
@property
|
|
4518
|
+
def apps(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___App]:
|
|
4519
|
+
"""A list of applications associated with the module"""
|
|
4520
|
+
|
|
4521
|
+
def __init__(self, *, module_id: builtins.str=..., visibility: global___Visibility.ValueType=..., url: builtins.str=..., description: builtins.str=..., models: collections.abc.Iterable[global___Model] | None=..., entrypoint: builtins.str=..., first_run: builtins.str | None=..., apps: collections.abc.Iterable[global___App] | None=..., markdown_description: builtins.str | None=...) -> None:
|
|
3947
4522
|
...
|
|
3948
4523
|
|
|
3949
|
-
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', 'first_run', b'first_run']) -> builtins.bool:
|
|
4524
|
+
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'first_run', b'first_run', 'markdown_description', b'markdown_description']) -> builtins.bool:
|
|
3950
4525
|
...
|
|
3951
4526
|
|
|
3952
|
-
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', 'description', b'description', 'entrypoint', b'entrypoint', 'first_run', b'first_run', 'models', b'models', 'module_id', b'module_id', 'url', b'url', 'visibility', b'visibility']) -> None:
|
|
4527
|
+
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'apps', b'apps', 'description', b'description', 'entrypoint', b'entrypoint', 'first_run', b'first_run', 'markdown_description', b'markdown_description', 'models', b'models', 'module_id', b'module_id', 'url', b'url', 'visibility', b'visibility']) -> None:
|
|
3953
4528
|
...
|
|
3954
4529
|
|
|
4530
|
+
@typing.overload
|
|
3955
4531
|
def WhichOneof(self, oneof_group: typing.Literal['_first_run', b'_first_run']) -> typing.Literal['first_run'] | None:
|
|
3956
4532
|
...
|
|
4533
|
+
|
|
4534
|
+
@typing.overload
|
|
4535
|
+
def WhichOneof(self, oneof_group: typing.Literal['_markdown_description', b'_markdown_description']) -> typing.Literal['markdown_description'] | None:
|
|
4536
|
+
...
|
|
3957
4537
|
global___UpdateModuleRequest = UpdateModuleRequest
|
|
3958
4538
|
|
|
4539
|
+
@typing.final
|
|
4540
|
+
class App(google.protobuf.message.Message):
|
|
4541
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
4542
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
4543
|
+
TYPE_FIELD_NUMBER: builtins.int
|
|
4544
|
+
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
4545
|
+
FRAGMENT_IDS_FIELD_NUMBER: builtins.int
|
|
4546
|
+
LOGO_PATH_FIELD_NUMBER: builtins.int
|
|
4547
|
+
CUSTOMIZATIONS_FIELD_NUMBER: builtins.int
|
|
4548
|
+
name: builtins.str
|
|
4549
|
+
'The name of the application'
|
|
4550
|
+
type: builtins.str
|
|
4551
|
+
'The type of the application'
|
|
4552
|
+
entrypoint: builtins.str
|
|
4553
|
+
'The entrypoint of the application'
|
|
4554
|
+
logo_path: builtins.str
|
|
4555
|
+
'Optional: path to a custom logo for branding'
|
|
4556
|
+
|
|
4557
|
+
@property
|
|
4558
|
+
def fragment_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
4559
|
+
"""Optional: fragment IDs to filter machines in the picker"""
|
|
4560
|
+
|
|
4561
|
+
@property
|
|
4562
|
+
def customizations(self) -> global___AppCustomizations:
|
|
4563
|
+
"""Optional: structured customizations for the app (e.g., machine picker headings)"""
|
|
4564
|
+
|
|
4565
|
+
def __init__(self, *, name: builtins.str=..., type: builtins.str=..., entrypoint: builtins.str=..., fragment_ids: collections.abc.Iterable[builtins.str] | None=..., logo_path: builtins.str | None=..., customizations: global___AppCustomizations | None=...) -> None:
|
|
4566
|
+
...
|
|
4567
|
+
|
|
4568
|
+
def HasField(self, field_name: typing.Literal['_logo_path', b'_logo_path', 'customizations', b'customizations', 'logo_path', b'logo_path']) -> builtins.bool:
|
|
4569
|
+
...
|
|
4570
|
+
|
|
4571
|
+
def ClearField(self, field_name: typing.Literal['_logo_path', b'_logo_path', 'customizations', b'customizations', 'entrypoint', b'entrypoint', 'fragment_ids', b'fragment_ids', 'logo_path', b'logo_path', 'name', b'name', 'type', b'type']) -> None:
|
|
4572
|
+
...
|
|
4573
|
+
|
|
4574
|
+
def WhichOneof(self, oneof_group: typing.Literal['_logo_path', b'_logo_path']) -> typing.Literal['logo_path'] | None:
|
|
4575
|
+
...
|
|
4576
|
+
global___App = App
|
|
4577
|
+
|
|
3959
4578
|
@typing.final
|
|
3960
4579
|
class UpdateModuleResponse(google.protobuf.message.Message):
|
|
3961
4580
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -3975,17 +4594,39 @@ class UpdateModuleMetadata(google.protobuf.message.Message):
|
|
|
3975
4594
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3976
4595
|
MODELS_FIELD_NUMBER: builtins.int
|
|
3977
4596
|
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
4597
|
+
APPS_FIELD_NUMBER: builtins.int
|
|
4598
|
+
SOURCE_TYPE_FIELD_NUMBER: builtins.int
|
|
4599
|
+
LANGUAGE_FIELD_NUMBER: builtins.int
|
|
3978
4600
|
entrypoint: builtins.str
|
|
3979
4601
|
'The executable to run to start the module program'
|
|
4602
|
+
source_type: global___ModuleSourceType.ValueType
|
|
4603
|
+
'Determines where the source code of module is managed, either externally or hosted by viam.'
|
|
4604
|
+
language: global___ModuleLanguage.ValueType
|
|
4605
|
+
'The language the module is written in'
|
|
3980
4606
|
|
|
3981
4607
|
@property
|
|
3982
4608
|
def models(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Model]:
|
|
3983
4609
|
"""A list of models that are available in the module"""
|
|
3984
4610
|
|
|
3985
|
-
|
|
4611
|
+
@property
|
|
4612
|
+
def apps(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___App]:
|
|
4613
|
+
"""A list of applications associated with the module"""
|
|
4614
|
+
|
|
4615
|
+
def __init__(self, *, models: collections.abc.Iterable[global___Model] | None=..., entrypoint: builtins.str=..., apps: collections.abc.Iterable[global___App] | None=..., source_type: global___ModuleSourceType.ValueType | None=..., language: global___ModuleLanguage.ValueType | None=...) -> None:
|
|
4616
|
+
...
|
|
4617
|
+
|
|
4618
|
+
def HasField(self, field_name: typing.Literal['_language', b'_language', '_source_type', b'_source_type', 'language', b'language', 'source_type', b'source_type']) -> builtins.bool:
|
|
3986
4619
|
...
|
|
3987
4620
|
|
|
3988
|
-
def ClearField(self, field_name: typing.Literal['entrypoint', b'entrypoint', 'models', b'models']) -> None:
|
|
4621
|
+
def ClearField(self, field_name: typing.Literal['_language', b'_language', '_source_type', b'_source_type', 'apps', b'apps', 'entrypoint', b'entrypoint', 'language', b'language', 'models', b'models', 'source_type', b'source_type']) -> None:
|
|
4622
|
+
...
|
|
4623
|
+
|
|
4624
|
+
@typing.overload
|
|
4625
|
+
def WhichOneof(self, oneof_group: typing.Literal['_language', b'_language']) -> typing.Literal['language'] | None:
|
|
4626
|
+
...
|
|
4627
|
+
|
|
4628
|
+
@typing.overload
|
|
4629
|
+
def WhichOneof(self, oneof_group: typing.Literal['_source_type', b'_source_type']) -> typing.Literal['source_type'] | None:
|
|
3989
4630
|
...
|
|
3990
4631
|
global___UpdateModuleMetadata = UpdateModuleMetadata
|
|
3991
4632
|
|
|
@@ -4028,6 +4669,7 @@ class Model(google.protobuf.message.Message):
|
|
|
4028
4669
|
MODEL_FIELD_NUMBER: builtins.int
|
|
4029
4670
|
MARKDOWN_DOCUMENTATION_FIELD_NUMBER: builtins.int
|
|
4030
4671
|
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
4672
|
+
SUPPORTED_HARDWARE_FIELD_NUMBER: builtins.int
|
|
4031
4673
|
api: builtins.str
|
|
4032
4674
|
'The colon-delimited-triplet of the api implemented by the model'
|
|
4033
4675
|
model: builtins.str
|
|
@@ -4037,13 +4679,17 @@ class Model(google.protobuf.message.Message):
|
|
|
4037
4679
|
description: builtins.str
|
|
4038
4680
|
'A short description of the model that explains its purpose'
|
|
4039
4681
|
|
|
4040
|
-
|
|
4682
|
+
@property
|
|
4683
|
+
def supported_hardware(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
4684
|
+
"""A list of supported hardware names"""
|
|
4685
|
+
|
|
4686
|
+
def __init__(self, *, api: builtins.str=..., model: builtins.str=..., markdown_documentation: builtins.str | None=..., description: builtins.str | None=..., supported_hardware: collections.abc.Iterable[builtins.str] | None=...) -> None:
|
|
4041
4687
|
...
|
|
4042
4688
|
|
|
4043
4689
|
def HasField(self, field_name: typing.Literal['_description', b'_description', '_markdown_documentation', b'_markdown_documentation', 'description', b'description', 'markdown_documentation', b'markdown_documentation']) -> builtins.bool:
|
|
4044
4690
|
...
|
|
4045
4691
|
|
|
4046
|
-
def ClearField(self, field_name: typing.Literal['_description', b'_description', '_markdown_documentation', b'_markdown_documentation', 'api', b'api', 'description', b'description', 'markdown_documentation', b'markdown_documentation', 'model', b'model']) -> None:
|
|
4692
|
+
def ClearField(self, field_name: typing.Literal['_description', b'_description', '_markdown_documentation', b'_markdown_documentation', 'api', b'api', 'description', b'description', 'markdown_documentation', b'markdown_documentation', 'model', b'model', 'supported_hardware', b'supported_hardware']) -> None:
|
|
4047
4693
|
...
|
|
4048
4694
|
|
|
4049
4695
|
@typing.overload
|
|
@@ -4179,6 +4825,8 @@ class Module(google.protobuf.message.Message):
|
|
|
4179
4825
|
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
4180
4826
|
PUBLIC_NAMESPACE_FIELD_NUMBER: builtins.int
|
|
4181
4827
|
FIRST_RUN_FIELD_NUMBER: builtins.int
|
|
4828
|
+
MARKDOWN_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
4829
|
+
APPS_FIELD_NUMBER: builtins.int
|
|
4182
4830
|
module_id: builtins.str
|
|
4183
4831
|
"The id of the module (formatted as prefix:name where prefix is the module owner's orgid or namespace)"
|
|
4184
4832
|
name: builtins.str
|
|
@@ -4201,6 +4849,8 @@ class Module(google.protobuf.message.Message):
|
|
|
4201
4849
|
'The public namespace of the organization that owns the module\n This is empty if no public namespace is set\n '
|
|
4202
4850
|
first_run: builtins.str
|
|
4203
4851
|
'The path to a setup script that is run before a newly downloaded module starts.'
|
|
4852
|
+
markdown_description: builtins.str
|
|
4853
|
+
'Longer documentation provided in markdown format'
|
|
4204
4854
|
|
|
4205
4855
|
@property
|
|
4206
4856
|
def versions(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___VersionHistory]:
|
|
@@ -4212,17 +4862,26 @@ class Module(google.protobuf.message.Message):
|
|
|
4212
4862
|
def models(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Model]:
|
|
4213
4863
|
"""A list of models that are available in the module"""
|
|
4214
4864
|
|
|
4215
|
-
|
|
4865
|
+
@property
|
|
4866
|
+
def apps(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___App]:
|
|
4867
|
+
"""A list of applications associated with the module"""
|
|
4868
|
+
|
|
4869
|
+
def __init__(self, *, module_id: builtins.str=..., name: builtins.str=..., visibility: global___Visibility.ValueType=..., versions: collections.abc.Iterable[global___VersionHistory] | None=..., url: builtins.str=..., description: builtins.str=..., models: collections.abc.Iterable[global___Model] | None=..., total_robot_usage: builtins.int=..., total_organization_usage: builtins.int=..., organization_id: builtins.str=..., entrypoint: builtins.str=..., public_namespace: builtins.str=..., first_run: builtins.str | None=..., markdown_description: builtins.str | None=..., apps: collections.abc.Iterable[global___App] | None=...) -> None:
|
|
4216
4870
|
...
|
|
4217
4871
|
|
|
4218
|
-
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', 'first_run', b'first_run']) -> builtins.bool:
|
|
4872
|
+
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'first_run', b'first_run', 'markdown_description', b'markdown_description']) -> builtins.bool:
|
|
4219
4873
|
...
|
|
4220
4874
|
|
|
4221
|
-
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', 'description', b'description', 'entrypoint', b'entrypoint', 'first_run', b'first_run', 'models', b'models', 'module_id', b'module_id', 'name', b'name', 'organization_id', b'organization_id', 'public_namespace', b'public_namespace', 'total_organization_usage', b'total_organization_usage', 'total_robot_usage', b'total_robot_usage', 'url', b'url', 'versions', b'versions', 'visibility', b'visibility']) -> None:
|
|
4875
|
+
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'apps', b'apps', 'description', b'description', 'entrypoint', b'entrypoint', 'first_run', b'first_run', 'markdown_description', b'markdown_description', 'models', b'models', 'module_id', b'module_id', 'name', b'name', 'organization_id', b'organization_id', 'public_namespace', b'public_namespace', 'total_organization_usage', b'total_organization_usage', 'total_robot_usage', b'total_robot_usage', 'url', b'url', 'versions', b'versions', 'visibility', b'visibility']) -> None:
|
|
4222
4876
|
...
|
|
4223
4877
|
|
|
4878
|
+
@typing.overload
|
|
4224
4879
|
def WhichOneof(self, oneof_group: typing.Literal['_first_run', b'_first_run']) -> typing.Literal['first_run'] | None:
|
|
4225
4880
|
...
|
|
4881
|
+
|
|
4882
|
+
@typing.overload
|
|
4883
|
+
def WhichOneof(self, oneof_group: typing.Literal['_markdown_description', b'_markdown_description']) -> typing.Literal['markdown_description'] | None:
|
|
4884
|
+
...
|
|
4226
4885
|
global___Module = Module
|
|
4227
4886
|
|
|
4228
4887
|
@typing.final
|
|
@@ -4233,12 +4892,16 @@ class VersionHistory(google.protobuf.message.Message):
|
|
|
4233
4892
|
MODELS_FIELD_NUMBER: builtins.int
|
|
4234
4893
|
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
4235
4894
|
FIRST_RUN_FIELD_NUMBER: builtins.int
|
|
4895
|
+
MARKDOWN_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
4896
|
+
APPS_FIELD_NUMBER: builtins.int
|
|
4236
4897
|
version: builtins.str
|
|
4237
4898
|
'The semver string that represents the major/minor/patch version of the module'
|
|
4238
4899
|
entrypoint: builtins.str
|
|
4239
4900
|
'The entrypoint for this version of the module'
|
|
4240
4901
|
first_run: builtins.str
|
|
4241
4902
|
'The path to a setup script that is run before a newly downloaded module starts.'
|
|
4903
|
+
markdown_description: builtins.str
|
|
4904
|
+
'The markdown documentation for this version of the module'
|
|
4242
4905
|
|
|
4243
4906
|
@property
|
|
4244
4907
|
def files(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Uploads]:
|
|
@@ -4248,17 +4911,26 @@ class VersionHistory(google.protobuf.message.Message):
|
|
|
4248
4911
|
def models(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Model]:
|
|
4249
4912
|
"""The models that this verion of the module provides"""
|
|
4250
4913
|
|
|
4251
|
-
|
|
4914
|
+
@property
|
|
4915
|
+
def apps(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___App]:
|
|
4916
|
+
"""A list of applications associated with the module"""
|
|
4917
|
+
|
|
4918
|
+
def __init__(self, *, version: builtins.str=..., files: collections.abc.Iterable[global___Uploads] | None=..., models: collections.abc.Iterable[global___Model] | None=..., entrypoint: builtins.str=..., first_run: builtins.str | None=..., markdown_description: builtins.str | None=..., apps: collections.abc.Iterable[global___App] | None=...) -> None:
|
|
4252
4919
|
...
|
|
4253
4920
|
|
|
4254
|
-
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', 'first_run', b'first_run']) -> builtins.bool:
|
|
4921
|
+
def HasField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'first_run', b'first_run', 'markdown_description', b'markdown_description']) -> builtins.bool:
|
|
4255
4922
|
...
|
|
4256
4923
|
|
|
4257
|
-
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', 'entrypoint', b'entrypoint', 'files', b'files', 'first_run', b'first_run', 'models', b'models', 'version', b'version']) -> None:
|
|
4924
|
+
def ClearField(self, field_name: typing.Literal['_first_run', b'_first_run', '_markdown_description', b'_markdown_description', 'apps', b'apps', 'entrypoint', b'entrypoint', 'files', b'files', 'first_run', b'first_run', 'markdown_description', b'markdown_description', 'models', b'models', 'version', b'version']) -> None:
|
|
4258
4925
|
...
|
|
4259
4926
|
|
|
4927
|
+
@typing.overload
|
|
4260
4928
|
def WhichOneof(self, oneof_group: typing.Literal['_first_run', b'_first_run']) -> typing.Literal['first_run'] | None:
|
|
4261
4929
|
...
|
|
4930
|
+
|
|
4931
|
+
@typing.overload
|
|
4932
|
+
def WhichOneof(self, oneof_group: typing.Literal['_markdown_description', b'_markdown_description']) -> typing.Literal['markdown_description'] | None:
|
|
4933
|
+
...
|
|
4262
4934
|
global___VersionHistory = VersionHistory
|
|
4263
4935
|
|
|
4264
4936
|
@typing.final
|
|
@@ -4372,18 +5044,24 @@ class OrgDetails(google.protobuf.message.Message):
|
|
|
4372
5044
|
ORG_NAME_FIELD_NUMBER: builtins.int
|
|
4373
5045
|
ORG_CID_FIELD_NUMBER: builtins.int
|
|
4374
5046
|
PUBLIC_NAMESPACE_FIELD_NUMBER: builtins.int
|
|
5047
|
+
BILLING_TIER_FIELD_NUMBER: builtins.int
|
|
4375
5048
|
org_id: builtins.str
|
|
4376
5049
|
org_name: builtins.str
|
|
4377
5050
|
org_cid: builtins.str
|
|
4378
5051
|
public_namespace: builtins.str
|
|
5052
|
+
billing_tier: builtins.str
|
|
4379
5053
|
|
|
4380
|
-
def __init__(self, *, org_id: builtins.str=..., org_name: builtins.str=..., org_cid: builtins.str | None=..., public_namespace: builtins.str | None=...) -> None:
|
|
5054
|
+
def __init__(self, *, org_id: builtins.str=..., org_name: builtins.str=..., org_cid: builtins.str | None=..., public_namespace: builtins.str | None=..., billing_tier: builtins.str | None=...) -> None:
|
|
4381
5055
|
...
|
|
4382
5056
|
|
|
4383
|
-
def HasField(self, field_name: typing.Literal['_org_cid', b'_org_cid', '_public_namespace', b'_public_namespace', 'org_cid', b'org_cid', 'public_namespace', b'public_namespace']) -> builtins.bool:
|
|
5057
|
+
def HasField(self, field_name: typing.Literal['_billing_tier', b'_billing_tier', '_org_cid', b'_org_cid', '_public_namespace', b'_public_namespace', 'billing_tier', b'billing_tier', 'org_cid', b'org_cid', 'public_namespace', b'public_namespace']) -> builtins.bool:
|
|
4384
5058
|
...
|
|
4385
5059
|
|
|
4386
|
-
def ClearField(self, field_name: typing.Literal['_org_cid', b'_org_cid', '_public_namespace', b'_public_namespace', 'org_cid', b'org_cid', 'org_id', b'org_id', 'org_name', b'org_name', 'public_namespace', b'public_namespace']) -> None:
|
|
5060
|
+
def ClearField(self, field_name: typing.Literal['_billing_tier', b'_billing_tier', '_org_cid', b'_org_cid', '_public_namespace', b'_public_namespace', 'billing_tier', b'billing_tier', 'org_cid', b'org_cid', 'org_id', b'org_id', 'org_name', b'org_name', 'public_namespace', b'public_namespace']) -> None:
|
|
5061
|
+
...
|
|
5062
|
+
|
|
5063
|
+
@typing.overload
|
|
5064
|
+
def WhichOneof(self, oneof_group: typing.Literal['_billing_tier', b'_billing_tier']) -> typing.Literal['billing_tier'] | None:
|
|
4387
5065
|
...
|
|
4388
5066
|
|
|
4389
5067
|
@typing.overload
|
|
@@ -4679,6 +5357,38 @@ class CreateKeyFromExistingKeyAuthorizationsResponse(google.protobuf.message.Mes
|
|
|
4679
5357
|
...
|
|
4680
5358
|
global___CreateKeyFromExistingKeyAuthorizationsResponse = CreateKeyFromExistingKeyAuthorizationsResponse
|
|
4681
5359
|
|
|
5360
|
+
@typing.final
|
|
5361
|
+
class GetAppContentRequest(google.protobuf.message.Message):
|
|
5362
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5363
|
+
PUBLIC_NAMESPACE_FIELD_NUMBER: builtins.int
|
|
5364
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
5365
|
+
public_namespace: builtins.str
|
|
5366
|
+
name: builtins.str
|
|
5367
|
+
|
|
5368
|
+
def __init__(self, *, public_namespace: builtins.str=..., name: builtins.str=...) -> None:
|
|
5369
|
+
...
|
|
5370
|
+
|
|
5371
|
+
def ClearField(self, field_name: typing.Literal['name', b'name', 'public_namespace', b'public_namespace']) -> None:
|
|
5372
|
+
...
|
|
5373
|
+
global___GetAppContentRequest = GetAppContentRequest
|
|
5374
|
+
|
|
5375
|
+
@typing.final
|
|
5376
|
+
class GetAppContentResponse(google.protobuf.message.Message):
|
|
5377
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5378
|
+
BLOB_PATH_FIELD_NUMBER: builtins.int
|
|
5379
|
+
ENTRYPOINT_FIELD_NUMBER: builtins.int
|
|
5380
|
+
APP_TYPE_FIELD_NUMBER: builtins.int
|
|
5381
|
+
blob_path: builtins.str
|
|
5382
|
+
entrypoint: builtins.str
|
|
5383
|
+
app_type: global___AppType.ValueType
|
|
5384
|
+
|
|
5385
|
+
def __init__(self, *, blob_path: builtins.str=..., entrypoint: builtins.str=..., app_type: global___AppType.ValueType=...) -> None:
|
|
5386
|
+
...
|
|
5387
|
+
|
|
5388
|
+
def ClearField(self, field_name: typing.Literal['app_type', b'app_type', 'blob_path', b'blob_path', 'entrypoint', b'entrypoint']) -> None:
|
|
5389
|
+
...
|
|
5390
|
+
global___GetAppContentResponse = GetAppContentResponse
|
|
5391
|
+
|
|
4682
5392
|
@typing.final
|
|
4683
5393
|
class OrganizationSetLogoRequest(google.protobuf.message.Message):
|
|
4684
5394
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -4963,4 +5673,144 @@ class OAuthConfig(google.protobuf.message.Message):
|
|
|
4963
5673
|
|
|
4964
5674
|
def ClearField(self, field_name: typing.Literal['client_authentication', b'client_authentication', 'enabled_grants', b'enabled_grants', 'logout_uri', b'logout_uri', 'origin_uris', b'origin_uris', 'pkce', b'pkce', 'redirect_uris', b'redirect_uris', 'url_validation', b'url_validation']) -> None:
|
|
4965
5675
|
...
|
|
4966
|
-
global___OAuthConfig = OAuthConfig
|
|
5676
|
+
global___OAuthConfig = OAuthConfig
|
|
5677
|
+
|
|
5678
|
+
@typing.final
|
|
5679
|
+
class GetAppBrandingRequest(google.protobuf.message.Message):
|
|
5680
|
+
"""Branding and customization for app machine picker"""
|
|
5681
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5682
|
+
PUBLIC_NAMESPACE_FIELD_NUMBER: builtins.int
|
|
5683
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
5684
|
+
public_namespace: builtins.str
|
|
5685
|
+
name: builtins.str
|
|
5686
|
+
|
|
5687
|
+
def __init__(self, *, public_namespace: builtins.str=..., name: builtins.str=...) -> None:
|
|
5688
|
+
...
|
|
5689
|
+
|
|
5690
|
+
def ClearField(self, field_name: typing.Literal['name', b'name', 'public_namespace', b'public_namespace']) -> None:
|
|
5691
|
+
...
|
|
5692
|
+
global___GetAppBrandingRequest = GetAppBrandingRequest
|
|
5693
|
+
|
|
5694
|
+
@typing.final
|
|
5695
|
+
class TextOverrides(google.protobuf.message.Message):
|
|
5696
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5697
|
+
|
|
5698
|
+
@typing.final
|
|
5699
|
+
class FieldsEntry(google.protobuf.message.Message):
|
|
5700
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5701
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
5702
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
5703
|
+
key: builtins.str
|
|
5704
|
+
value: builtins.str
|
|
5705
|
+
|
|
5706
|
+
def __init__(self, *, key: builtins.str=..., value: builtins.str=...) -> None:
|
|
5707
|
+
...
|
|
5708
|
+
|
|
5709
|
+
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
5710
|
+
...
|
|
5711
|
+
FIELDS_FIELD_NUMBER: builtins.int
|
|
5712
|
+
|
|
5713
|
+
@property
|
|
5714
|
+
def fields(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
5715
|
+
...
|
|
5716
|
+
|
|
5717
|
+
def __init__(self, *, fields: collections.abc.Mapping[builtins.str, builtins.str] | None=...) -> None:
|
|
5718
|
+
...
|
|
5719
|
+
|
|
5720
|
+
def ClearField(self, field_name: typing.Literal['fields', b'fields']) -> None:
|
|
5721
|
+
...
|
|
5722
|
+
global___TextOverrides = TextOverrides
|
|
5723
|
+
|
|
5724
|
+
@typing.final
|
|
5725
|
+
class GetAppBrandingResponse(google.protobuf.message.Message):
|
|
5726
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5727
|
+
|
|
5728
|
+
@typing.final
|
|
5729
|
+
class TextCustomizationsEntry(google.protobuf.message.Message):
|
|
5730
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5731
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
5732
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
5733
|
+
key: builtins.str
|
|
5734
|
+
|
|
5735
|
+
@property
|
|
5736
|
+
def value(self) -> global___TextOverrides:
|
|
5737
|
+
...
|
|
5738
|
+
|
|
5739
|
+
def __init__(self, *, key: builtins.str=..., value: global___TextOverrides | None=...) -> None:
|
|
5740
|
+
...
|
|
5741
|
+
|
|
5742
|
+
def HasField(self, field_name: typing.Literal['value', b'value']) -> builtins.bool:
|
|
5743
|
+
...
|
|
5744
|
+
|
|
5745
|
+
def ClearField(self, field_name: typing.Literal['key', b'key', 'value', b'value']) -> None:
|
|
5746
|
+
...
|
|
5747
|
+
LOGO_PATH_FIELD_NUMBER: builtins.int
|
|
5748
|
+
TEXT_CUSTOMIZATIONS_FIELD_NUMBER: builtins.int
|
|
5749
|
+
FRAGMENT_IDS_FIELD_NUMBER: builtins.int
|
|
5750
|
+
logo_path: builtins.str
|
|
5751
|
+
|
|
5752
|
+
@property
|
|
5753
|
+
def text_customizations(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, global___TextOverrides]:
|
|
5754
|
+
...
|
|
5755
|
+
|
|
5756
|
+
@property
|
|
5757
|
+
def fragment_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
5758
|
+
...
|
|
5759
|
+
|
|
5760
|
+
def __init__(self, *, logo_path: builtins.str | None=..., text_customizations: collections.abc.Mapping[builtins.str, global___TextOverrides] | None=..., fragment_ids: collections.abc.Iterable[builtins.str] | None=...) -> None:
|
|
5761
|
+
...
|
|
5762
|
+
|
|
5763
|
+
def HasField(self, field_name: typing.Literal['_logo_path', b'_logo_path', 'logo_path', b'logo_path']) -> builtins.bool:
|
|
5764
|
+
...
|
|
5765
|
+
|
|
5766
|
+
def ClearField(self, field_name: typing.Literal['_logo_path', b'_logo_path', 'fragment_ids', b'fragment_ids', 'logo_path', b'logo_path', 'text_customizations', b'text_customizations']) -> None:
|
|
5767
|
+
...
|
|
5768
|
+
|
|
5769
|
+
def WhichOneof(self, oneof_group: typing.Literal['_logo_path', b'_logo_path']) -> typing.Literal['logo_path'] | None:
|
|
5770
|
+
...
|
|
5771
|
+
global___GetAppBrandingResponse = GetAppBrandingResponse
|
|
5772
|
+
|
|
5773
|
+
@typing.final
|
|
5774
|
+
class AppCustomizations(google.protobuf.message.Message):
|
|
5775
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5776
|
+
MACHINE_PICKER_FIELD_NUMBER: builtins.int
|
|
5777
|
+
|
|
5778
|
+
@property
|
|
5779
|
+
def machine_picker(self) -> global___MachinePickerCustomizations:
|
|
5780
|
+
...
|
|
5781
|
+
|
|
5782
|
+
def __init__(self, *, machine_picker: global___MachinePickerCustomizations | None=...) -> None:
|
|
5783
|
+
...
|
|
5784
|
+
|
|
5785
|
+
def HasField(self, field_name: typing.Literal['machine_picker', b'machine_picker']) -> builtins.bool:
|
|
5786
|
+
...
|
|
5787
|
+
|
|
5788
|
+
def ClearField(self, field_name: typing.Literal['machine_picker', b'machine_picker']) -> None:
|
|
5789
|
+
...
|
|
5790
|
+
global___AppCustomizations = AppCustomizations
|
|
5791
|
+
|
|
5792
|
+
@typing.final
|
|
5793
|
+
class MachinePickerCustomizations(google.protobuf.message.Message):
|
|
5794
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
5795
|
+
HEADING_FIELD_NUMBER: builtins.int
|
|
5796
|
+
SUBHEADING_FIELD_NUMBER: builtins.int
|
|
5797
|
+
heading: builtins.str
|
|
5798
|
+
subheading: builtins.str
|
|
5799
|
+
|
|
5800
|
+
def __init__(self, *, heading: builtins.str | None=..., subheading: builtins.str | None=...) -> None:
|
|
5801
|
+
...
|
|
5802
|
+
|
|
5803
|
+
def HasField(self, field_name: typing.Literal['_heading', b'_heading', '_subheading', b'_subheading', 'heading', b'heading', 'subheading', b'subheading']) -> builtins.bool:
|
|
5804
|
+
...
|
|
5805
|
+
|
|
5806
|
+
def ClearField(self, field_name: typing.Literal['_heading', b'_heading', '_subheading', b'_subheading', 'heading', b'heading', 'subheading', b'subheading']) -> None:
|
|
5807
|
+
...
|
|
5808
|
+
|
|
5809
|
+
@typing.overload
|
|
5810
|
+
def WhichOneof(self, oneof_group: typing.Literal['_heading', b'_heading']) -> typing.Literal['heading'] | None:
|
|
5811
|
+
...
|
|
5812
|
+
|
|
5813
|
+
@typing.overload
|
|
5814
|
+
def WhichOneof(self, oneof_group: typing.Literal['_subheading', b'_subheading']) -> typing.Literal['subheading'] | None:
|
|
5815
|
+
...
|
|
5816
|
+
global___MachinePickerCustomizations = MachinePickerCustomizations
|