viam-sdk 0.55.1__py3-none-musllinux_1_2_i686.whl → 0.57.0__py3-none-musllinux_1_2_i686.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 +3 -5
- viam/app/billing_client.py +3 -5
- viam/app/data_client.py +129 -11
- viam/app/ml_training_client.py +3 -5
- viam/app/provisioning_client.py +3 -5
- viam/app/viam_client.py +19 -1
- 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 +26 -2
- viam/gen/app/data/v1/data_pb2.py +123 -105
- viam/gen/app/data/v1/data_pb2.pyi +186 -4
- viam/gen/app/datapipelines/v1/data_pipelines_pb2.py +1 -1
- viam/gen/app/dataset/v1/dataset_pb2.py +1 -1
- viam/gen/app/datasync/v1/data_sync_pb2.py +1 -1
- viam/gen/app/mlinference/v1/ml_inference_pb2.py +1 -1
- viam/gen/app/mltraining/v1/ml_training_pb2.py +1 -1
- viam/gen/app/packages/v1/packages_pb2.py +1 -1
- viam/gen/app/v1/app_pb2.py +1 -1
- viam/gen/app/v1/billing_pb2.py +52 -48
- viam/gen/app/v1/billing_pb2.pyi +59 -3
- viam/gen/app/v1/end_user_pb2.py +1 -1
- viam/gen/app/v1/robot_pb2.py +1 -1
- viam/gen/common/v1/common_pb2.py +1 -1
- viam/gen/component/arm/v1/arm_pb2.py +1 -1
- viam/gen/component/audioinput/v1/audioinput_pb2.py +1 -1
- 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_pb2.py +1 -1
- viam/gen/component/encoder/v1/encoder_pb2.py +1 -1
- viam/gen/component/gantry/v1/gantry_pb2.py +1 -1
- viam/gen/component/generic/v1/generic_pb2.py +1 -1
- viam/gen/component/gripper/v1/gripper_pb2.py +1 -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 +1 -1
- viam/gen/component/testecho/v1/testecho_pb2.py +1 -1
- viam/gen/module/v1/module_pb2.py +1 -1
- 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_pb2.py +1 -1
- viam/gen/robot/v1/robot_pb2.py +1 -1
- viam/gen/service/datamanager/v1/data_manager_pb2.py +1 -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 +87 -63
- viam/gen/service/motion/v1/motion_pb2.pyi +92 -66
- 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/vision/v1/vision_pb2.py +1 -1
- viam/gen/service/worldstatestore/v1/world_state_store_pb2.py +1 -1
- viam/gen/stream/v1/stream_pb2.py +1 -1
- viam/gen/tagger/v1/tagger_pb2.py +1 -1
- viam/proto/app/billing.py +4 -0
- viam/proto/app/data/__init__.py +18 -0
- viam/services/motion/client.py +8 -9
- viam/services/motion/motion.py +37 -43
- viam/services/worldstatestore/worldstatestore.py +2 -2
- viam/sessions_client.py +34 -25
- viam/version_metadata.py +2 -2
- {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/METADATA +1 -1
- {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/RECORD +75 -75
- {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/WHEEL +0 -0
- {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -51,20 +51,23 @@ class MoveRequest(google.protobuf.message.Message):
|
|
|
51
51
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
52
52
|
NAME_FIELD_NUMBER: builtins.int
|
|
53
53
|
DESTINATION_FIELD_NUMBER: builtins.int
|
|
54
|
-
|
|
54
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
55
55
|
WORLD_STATE_FIELD_NUMBER: builtins.int
|
|
56
56
|
CONSTRAINTS_FIELD_NUMBER: builtins.int
|
|
57
|
+
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
57
58
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
58
59
|
name: builtins.str
|
|
59
60
|
'Name of the motion service'
|
|
61
|
+
component_name: builtins.str
|
|
62
|
+
'Component on the robot to move to the specified destination'
|
|
60
63
|
|
|
61
64
|
@property
|
|
62
65
|
def destination(self) -> common.v1.common_pb2.PoseInFrame:
|
|
63
66
|
"""Destination to move to, which can a pose in the reference frame of any frame in the robot's frame system"""
|
|
64
67
|
|
|
65
68
|
@property
|
|
66
|
-
def
|
|
67
|
-
"""
|
|
69
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
70
|
+
"""Deprecated, use component_name field."""
|
|
68
71
|
|
|
69
72
|
@property
|
|
70
73
|
def world_state(self) -> common.v1.common_pb2.WorldState:
|
|
@@ -80,13 +83,13 @@ class MoveRequest(google.protobuf.message.Message):
|
|
|
80
83
|
def extra(self) -> google.protobuf.struct_pb2.Struct:
|
|
81
84
|
"""Additional arguments to the method"""
|
|
82
85
|
|
|
83
|
-
def __init__(self, *, name: builtins.str=..., destination: common.v1.common_pb2.PoseInFrame | None=...,
|
|
86
|
+
def __init__(self, *, name: builtins.str=..., destination: common.v1.common_pb2.PoseInFrame | None=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., world_state: common.v1.common_pb2.WorldState | None=..., constraints: global___Constraints | None=..., component_name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
84
87
|
...
|
|
85
88
|
|
|
86
|
-
def HasField(self, field_name: typing.Literal['_constraints', b'_constraints', '_world_state', b'_world_state', '
|
|
89
|
+
def HasField(self, field_name: typing.Literal['_constraints', b'_constraints', '_world_state', b'_world_state', 'component_name_deprecated', b'component_name_deprecated', 'constraints', b'constraints', 'destination', b'destination', 'extra', b'extra', 'world_state', b'world_state']) -> builtins.bool:
|
|
87
90
|
...
|
|
88
91
|
|
|
89
|
-
def ClearField(self, field_name: typing.Literal['_constraints', b'_constraints', '_world_state', b'_world_state', 'component_name', b'component_name', 'constraints', b'constraints', 'destination', b'destination', 'extra', b'extra', 'name', b'name', 'world_state', b'world_state']) -> None:
|
|
92
|
+
def ClearField(self, field_name: typing.Literal['_constraints', b'_constraints', '_world_state', b'_world_state', 'component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'constraints', b'constraints', 'destination', b'destination', 'extra', b'extra', 'name', b'name', 'world_state', b'world_state']) -> None:
|
|
90
93
|
...
|
|
91
94
|
|
|
92
95
|
@typing.overload
|
|
@@ -116,25 +119,31 @@ class MoveOnMapRequest(google.protobuf.message.Message):
|
|
|
116
119
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
117
120
|
NAME_FIELD_NUMBER: builtins.int
|
|
118
121
|
DESTINATION_FIELD_NUMBER: builtins.int
|
|
119
|
-
|
|
120
|
-
|
|
122
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
123
|
+
SLAM_SERVICE_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
121
124
|
MOTION_CONFIGURATION_FIELD_NUMBER: builtins.int
|
|
122
125
|
OBSTACLES_FIELD_NUMBER: builtins.int
|
|
126
|
+
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
127
|
+
SLAM_SERVICE_NAME_FIELD_NUMBER: builtins.int
|
|
123
128
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
124
129
|
name: builtins.str
|
|
125
130
|
'Name of the motion service'
|
|
131
|
+
component_name: builtins.str
|
|
132
|
+
'Component on the robot to move to the specified destination'
|
|
133
|
+
slam_service_name: builtins.str
|
|
134
|
+
'Name of the slam service from which the SLAM map is requested'
|
|
126
135
|
|
|
127
136
|
@property
|
|
128
137
|
def destination(self) -> common.v1.common_pb2.Pose:
|
|
129
138
|
"""Specify a destination to, which can be any pose with respect to the SLAM map's origin"""
|
|
130
139
|
|
|
131
140
|
@property
|
|
132
|
-
def
|
|
133
|
-
"""
|
|
141
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
142
|
+
"""Deprecated, use component_name field."""
|
|
134
143
|
|
|
135
144
|
@property
|
|
136
|
-
def
|
|
137
|
-
"""
|
|
145
|
+
def slam_service_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
146
|
+
"""Deprecated, use slam_service_name field."""
|
|
138
147
|
|
|
139
148
|
@property
|
|
140
149
|
def motion_configuration(self) -> global___MotionConfiguration:
|
|
@@ -148,13 +157,13 @@ class MoveOnMapRequest(google.protobuf.message.Message):
|
|
|
148
157
|
def extra(self) -> google.protobuf.struct_pb2.Struct:
|
|
149
158
|
"""Additional arguments to the method"""
|
|
150
159
|
|
|
151
|
-
def __init__(self, *, name: builtins.str=..., destination: common.v1.common_pb2.Pose | None=...,
|
|
160
|
+
def __init__(self, *, name: builtins.str=..., destination: common.v1.common_pb2.Pose | None=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., slam_service_name_deprecated: common.v1.common_pb2.ResourceName | None=..., motion_configuration: global___MotionConfiguration | None=..., obstacles: collections.abc.Iterable[common.v1.common_pb2.Geometry] | None=..., component_name: builtins.str=..., slam_service_name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
152
161
|
...
|
|
153
162
|
|
|
154
|
-
def HasField(self, field_name: typing.Literal['_motion_configuration', b'_motion_configuration', '
|
|
163
|
+
def HasField(self, field_name: typing.Literal['_motion_configuration', b'_motion_configuration', 'component_name_deprecated', b'component_name_deprecated', 'destination', b'destination', 'extra', b'extra', 'motion_configuration', b'motion_configuration', 'slam_service_name_deprecated', b'slam_service_name_deprecated']) -> builtins.bool:
|
|
155
164
|
...
|
|
156
165
|
|
|
157
|
-
def ClearField(self, field_name: typing.Literal['_motion_configuration', b'_motion_configuration', 'component_name', b'component_name', 'destination', b'destination', 'extra', b'extra', 'motion_configuration', b'motion_configuration', 'name', b'name', 'obstacles', b'obstacles', 'slam_service_name', b'slam_service_name']) -> None:
|
|
166
|
+
def ClearField(self, field_name: typing.Literal['_motion_configuration', b'_motion_configuration', 'component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'destination', b'destination', 'extra', b'extra', 'motion_configuration', b'motion_configuration', 'name', b'name', 'obstacles', b'obstacles', 'slam_service_name', b'slam_service_name', 'slam_service_name_deprecated', b'slam_service_name_deprecated']) -> None:
|
|
158
167
|
...
|
|
159
168
|
|
|
160
169
|
def WhichOneof(self, oneof_group: typing.Literal['_motion_configuration', b'_motion_configuration']) -> typing.Literal['motion_configuration'] | None:
|
|
@@ -179,24 +188,28 @@ global___MoveOnMapResponse = MoveOnMapResponse
|
|
|
179
188
|
class ObstacleDetector(google.protobuf.message.Message):
|
|
180
189
|
"""Pairs a vision service with a camera, informing the service about which camera it may use"""
|
|
181
190
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
191
|
+
VISION_SERVICE_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
192
|
+
CAMERA_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
182
193
|
VISION_SERVICE_FIELD_NUMBER: builtins.int
|
|
183
194
|
CAMERA_FIELD_NUMBER: builtins.int
|
|
195
|
+
vision_service: builtins.str
|
|
196
|
+
camera: builtins.str
|
|
184
197
|
|
|
185
198
|
@property
|
|
186
|
-
def
|
|
199
|
+
def vision_service_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
187
200
|
...
|
|
188
201
|
|
|
189
202
|
@property
|
|
190
|
-
def
|
|
203
|
+
def camera_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
191
204
|
...
|
|
192
205
|
|
|
193
|
-
def __init__(self, *,
|
|
206
|
+
def __init__(self, *, vision_service_deprecated: common.v1.common_pb2.ResourceName | None=..., camera_deprecated: common.v1.common_pb2.ResourceName | None=..., vision_service: builtins.str=..., camera: builtins.str=...) -> None:
|
|
194
207
|
...
|
|
195
208
|
|
|
196
|
-
def HasField(self, field_name: typing.Literal['
|
|
209
|
+
def HasField(self, field_name: typing.Literal['camera_deprecated', b'camera_deprecated', 'vision_service_deprecated', b'vision_service_deprecated']) -> builtins.bool:
|
|
197
210
|
...
|
|
198
211
|
|
|
199
|
-
def ClearField(self, field_name: typing.Literal['camera', b'camera', 'vision_service', b'vision_service']) -> None:
|
|
212
|
+
def ClearField(self, field_name: typing.Literal['camera', b'camera', 'camera_deprecated', b'camera_deprecated', 'vision_service', b'vision_service', 'vision_service_deprecated', b'vision_service_deprecated']) -> None:
|
|
200
213
|
...
|
|
201
214
|
global___ObstacleDetector = ObstacleDetector
|
|
202
215
|
|
|
@@ -260,28 +273,34 @@ class MoveOnGlobeRequest(google.protobuf.message.Message):
|
|
|
260
273
|
NAME_FIELD_NUMBER: builtins.int
|
|
261
274
|
DESTINATION_FIELD_NUMBER: builtins.int
|
|
262
275
|
HEADING_FIELD_NUMBER: builtins.int
|
|
263
|
-
|
|
264
|
-
|
|
276
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
277
|
+
MOVEMENT_SENSOR_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
265
278
|
OBSTACLES_FIELD_NUMBER: builtins.int
|
|
266
279
|
MOTION_CONFIGURATION_FIELD_NUMBER: builtins.int
|
|
267
280
|
BOUNDING_REGIONS_FIELD_NUMBER: builtins.int
|
|
281
|
+
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
282
|
+
MOVEMENT_SENSOR_NAME_FIELD_NUMBER: builtins.int
|
|
268
283
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
269
284
|
name: builtins.str
|
|
270
285
|
'Name of the motion service'
|
|
271
286
|
heading: builtins.float
|
|
272
287
|
'Optional compass heading to achieve at the destination, in degrees [0-360)'
|
|
288
|
+
component_name: builtins.str
|
|
289
|
+
'Component on the robot to move to the specified destination'
|
|
290
|
+
movement_sensor_name: builtins.str
|
|
291
|
+
'Name of the movement sensor which will be used to check robot location'
|
|
273
292
|
|
|
274
293
|
@property
|
|
275
294
|
def destination(self) -> common.v1.common_pb2.GeoPoint:
|
|
276
295
|
"""Destination, encoded as a GeoPoint"""
|
|
277
296
|
|
|
278
297
|
@property
|
|
279
|
-
def
|
|
280
|
-
"""
|
|
298
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
299
|
+
"""Deprecated, use component_name field."""
|
|
281
300
|
|
|
282
301
|
@property
|
|
283
|
-
def
|
|
284
|
-
"""
|
|
302
|
+
def movement_sensor_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
303
|
+
"""Deprecated, use movement_sensor_name field."""
|
|
285
304
|
|
|
286
305
|
@property
|
|
287
306
|
def obstacles(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[common.v1.common_pb2.GeoGeometry]:
|
|
@@ -299,13 +318,13 @@ class MoveOnGlobeRequest(google.protobuf.message.Message):
|
|
|
299
318
|
def extra(self) -> google.protobuf.struct_pb2.Struct:
|
|
300
319
|
"""Additional arguments to the method"""
|
|
301
320
|
|
|
302
|
-
def __init__(self, *, name: builtins.str=..., destination: common.v1.common_pb2.GeoPoint | None=..., heading: builtins.float | None=...,
|
|
321
|
+
def __init__(self, *, name: builtins.str=..., destination: common.v1.common_pb2.GeoPoint | None=..., heading: builtins.float | None=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., movement_sensor_name_deprecated: common.v1.common_pb2.ResourceName | None=..., obstacles: collections.abc.Iterable[common.v1.common_pb2.GeoGeometry] | None=..., motion_configuration: global___MotionConfiguration | None=..., bounding_regions: collections.abc.Iterable[common.v1.common_pb2.GeoGeometry] | None=..., component_name: builtins.str=..., movement_sensor_name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
303
322
|
...
|
|
304
323
|
|
|
305
|
-
def HasField(self, field_name: typing.Literal['_heading', b'_heading', '_motion_configuration', b'_motion_configuration', '
|
|
324
|
+
def HasField(self, field_name: typing.Literal['_heading', b'_heading', '_motion_configuration', b'_motion_configuration', 'component_name_deprecated', b'component_name_deprecated', 'destination', b'destination', 'extra', b'extra', 'heading', b'heading', 'motion_configuration', b'motion_configuration', 'movement_sensor_name_deprecated', b'movement_sensor_name_deprecated']) -> builtins.bool:
|
|
306
325
|
...
|
|
307
326
|
|
|
308
|
-
def ClearField(self, field_name: typing.Literal['_heading', b'_heading', '_motion_configuration', b'_motion_configuration', 'bounding_regions', b'bounding_regions', 'component_name', b'component_name', 'destination', b'destination', 'extra', b'extra', 'heading', b'heading', 'motion_configuration', b'motion_configuration', 'movement_sensor_name', b'movement_sensor_name', 'name', b'name', 'obstacles', b'obstacles']) -> None:
|
|
327
|
+
def ClearField(self, field_name: typing.Literal['_heading', b'_heading', '_motion_configuration', b'_motion_configuration', 'bounding_regions', b'bounding_regions', 'component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'destination', b'destination', 'extra', b'extra', 'heading', b'heading', 'motion_configuration', b'motion_configuration', 'movement_sensor_name', b'movement_sensor_name', 'movement_sensor_name_deprecated', b'movement_sensor_name_deprecated', 'name', b'name', 'obstacles', b'obstacles']) -> None:
|
|
309
328
|
...
|
|
310
329
|
|
|
311
330
|
@typing.overload
|
|
@@ -335,17 +354,20 @@ global___MoveOnGlobeResponse = MoveOnGlobeResponse
|
|
|
335
354
|
class GetPoseRequest(google.protobuf.message.Message):
|
|
336
355
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
337
356
|
NAME_FIELD_NUMBER: builtins.int
|
|
338
|
-
|
|
357
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
339
358
|
DESTINATION_FRAME_FIELD_NUMBER: builtins.int
|
|
340
359
|
SUPPLEMENTAL_TRANSFORMS_FIELD_NUMBER: builtins.int
|
|
360
|
+
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
341
361
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
342
362
|
name: builtins.str
|
|
343
363
|
destination_frame: builtins.str
|
|
344
364
|
'the reference frame in which the component\'s pose\n should be provided, if unset this defaults\n to the "world" reference frame\n '
|
|
365
|
+
component_name: builtins.str
|
|
366
|
+
'the component whose pose is being requested'
|
|
345
367
|
|
|
346
368
|
@property
|
|
347
|
-
def
|
|
348
|
-
"""
|
|
369
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
370
|
+
"""Deprecated, use component_name field."""
|
|
349
371
|
|
|
350
372
|
@property
|
|
351
373
|
def supplemental_transforms(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[common.v1.common_pb2.Transform]:
|
|
@@ -357,13 +379,13 @@ class GetPoseRequest(google.protobuf.message.Message):
|
|
|
357
379
|
def extra(self) -> google.protobuf.struct_pb2.Struct:
|
|
358
380
|
"""Additional arguments to the method"""
|
|
359
381
|
|
|
360
|
-
def __init__(self, *, name: builtins.str=...,
|
|
382
|
+
def __init__(self, *, name: builtins.str=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., destination_frame: builtins.str=..., supplemental_transforms: collections.abc.Iterable[common.v1.common_pb2.Transform] | None=..., component_name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
361
383
|
...
|
|
362
384
|
|
|
363
|
-
def HasField(self, field_name: typing.Literal['
|
|
385
|
+
def HasField(self, field_name: typing.Literal['component_name_deprecated', b'component_name_deprecated', 'extra', b'extra']) -> builtins.bool:
|
|
364
386
|
...
|
|
365
387
|
|
|
366
|
-
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'destination_frame', b'destination_frame', 'extra', b'extra', 'name', b'name', 'supplemental_transforms', b'supplemental_transforms']) -> None:
|
|
388
|
+
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'destination_frame', b'destination_frame', 'extra', b'extra', 'name', b'name', 'supplemental_transforms', b'supplemental_transforms']) -> None:
|
|
367
389
|
...
|
|
368
390
|
global___GetPoseRequest = GetPoseRequest
|
|
369
391
|
|
|
@@ -390,26 +412,29 @@ global___GetPoseResponse = GetPoseResponse
|
|
|
390
412
|
class StopPlanRequest(google.protobuf.message.Message):
|
|
391
413
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
392
414
|
NAME_FIELD_NUMBER: builtins.int
|
|
415
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
393
416
|
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
394
417
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
395
418
|
name: builtins.str
|
|
396
419
|
'The name of the motion service'
|
|
420
|
+
component_name: builtins.str
|
|
421
|
+
'The component of the currently executing plan to stop'
|
|
397
422
|
|
|
398
423
|
@property
|
|
399
|
-
def
|
|
400
|
-
"""
|
|
424
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
425
|
+
"""Deprecated, use component_name field."""
|
|
401
426
|
|
|
402
427
|
@property
|
|
403
428
|
def extra(self) -> google.protobuf.struct_pb2.Struct:
|
|
404
429
|
"""Additional arguments to the method"""
|
|
405
430
|
|
|
406
|
-
def __init__(self, *, name: builtins.str=...,
|
|
431
|
+
def __init__(self, *, name: builtins.str=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., component_name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
407
432
|
...
|
|
408
433
|
|
|
409
|
-
def HasField(self, field_name: typing.Literal['
|
|
434
|
+
def HasField(self, field_name: typing.Literal['component_name_deprecated', b'component_name_deprecated', 'extra', b'extra']) -> builtins.bool:
|
|
410
435
|
...
|
|
411
436
|
|
|
412
|
-
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'extra', b'extra', 'name', b'name']) -> None:
|
|
437
|
+
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'extra', b'extra', 'name', b'name']) -> None:
|
|
413
438
|
...
|
|
414
439
|
global___StopPlanRequest = StopPlanRequest
|
|
415
440
|
|
|
@@ -469,9 +494,10 @@ global___ListPlanStatusesResponse = ListPlanStatusesResponse
|
|
|
469
494
|
class GetPlanRequest(google.protobuf.message.Message):
|
|
470
495
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
471
496
|
NAME_FIELD_NUMBER: builtins.int
|
|
472
|
-
|
|
497
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
473
498
|
LAST_PLAN_ONLY_FIELD_NUMBER: builtins.int
|
|
474
499
|
EXECUTION_ID_FIELD_NUMBER: builtins.int
|
|
500
|
+
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
475
501
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
476
502
|
name: builtins.str
|
|
477
503
|
'The name of the motion service'
|
|
@@ -479,22 +505,24 @@ class GetPlanRequest(google.protobuf.message.Message):
|
|
|
479
505
|
'If supplied, the response will only return\n the the last plan for the component / execution\n '
|
|
480
506
|
execution_id: builtins.str
|
|
481
507
|
'If you want to know about the plans of a previous execution'
|
|
508
|
+
component_name: builtins.str
|
|
509
|
+
'The name of the component which was requested to be moved.'
|
|
482
510
|
|
|
483
511
|
@property
|
|
484
|
-
def
|
|
485
|
-
"""
|
|
512
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
513
|
+
"""Deprecated, use component_name field."""
|
|
486
514
|
|
|
487
515
|
@property
|
|
488
516
|
def extra(self) -> google.protobuf.struct_pb2.Struct:
|
|
489
517
|
"""Additional arguments to the method"""
|
|
490
518
|
|
|
491
|
-
def __init__(self, *, name: builtins.str=...,
|
|
519
|
+
def __init__(self, *, name: builtins.str=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., last_plan_only: builtins.bool=..., execution_id: builtins.str | None=..., component_name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
492
520
|
...
|
|
493
521
|
|
|
494
|
-
def HasField(self, field_name: typing.Literal['_execution_id', b'_execution_id', '
|
|
522
|
+
def HasField(self, field_name: typing.Literal['_execution_id', b'_execution_id', 'component_name_deprecated', b'component_name_deprecated', 'execution_id', b'execution_id', 'extra', b'extra']) -> builtins.bool:
|
|
495
523
|
...
|
|
496
524
|
|
|
497
|
-
def ClearField(self, field_name: typing.Literal['_execution_id', b'_execution_id', 'component_name', b'component_name', 'execution_id', b'execution_id', 'extra', b'extra', 'last_plan_only', b'last_plan_only', 'name', b'name']) -> None:
|
|
525
|
+
def ClearField(self, field_name: typing.Literal['_execution_id', b'_execution_id', 'component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'execution_id', b'execution_id', 'extra', b'extra', 'last_plan_only', b'last_plan_only', 'name', b'name']) -> None:
|
|
498
526
|
...
|
|
499
527
|
|
|
500
528
|
def WhichOneof(self, oneof_group: typing.Literal['_execution_id', b'_execution_id']) -> typing.Literal['execution_id'] | None:
|
|
@@ -717,33 +745,32 @@ class PlanStatusWithID(google.protobuf.message.Message):
|
|
|
717
745
|
"""
|
|
718
746
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
719
747
|
PLAN_ID_FIELD_NUMBER: builtins.int
|
|
720
|
-
|
|
748
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
721
749
|
EXECUTION_ID_FIELD_NUMBER: builtins.int
|
|
722
750
|
STATUS_FIELD_NUMBER: builtins.int
|
|
751
|
+
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
723
752
|
plan_id: builtins.str
|
|
724
753
|
'The unique ID of the plan'
|
|
725
754
|
execution_id: builtins.str
|
|
726
755
|
'The unique ID which identifies the plan execution.\n Multiple plans will share the same execution_id if they were\n generated due to replanning.\n '
|
|
756
|
+
component_name: builtins.str
|
|
757
|
+
'The component to be moved.\n Used for tracking & stopping.\n NOTE: A plan may move more components than just the\n component_name.\n '
|
|
727
758
|
|
|
728
759
|
@property
|
|
729
|
-
def
|
|
730
|
-
"""
|
|
731
|
-
Used for tracking & stopping.
|
|
732
|
-
NOTE: A plan may move more components than just the
|
|
733
|
-
component_name.
|
|
734
|
-
"""
|
|
760
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
761
|
+
"""Deprecated, use component_name field."""
|
|
735
762
|
|
|
736
763
|
@property
|
|
737
764
|
def status(self) -> global___PlanStatus:
|
|
738
765
|
...
|
|
739
766
|
|
|
740
|
-
def __init__(self, *, plan_id: builtins.str=...,
|
|
767
|
+
def __init__(self, *, plan_id: builtins.str=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., execution_id: builtins.str=..., status: global___PlanStatus | None=..., component_name: builtins.str=...) -> None:
|
|
741
768
|
...
|
|
742
769
|
|
|
743
|
-
def HasField(self, field_name: typing.Literal['
|
|
770
|
+
def HasField(self, field_name: typing.Literal['component_name_deprecated', b'component_name_deprecated', 'status', b'status']) -> builtins.bool:
|
|
744
771
|
...
|
|
745
772
|
|
|
746
|
-
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'execution_id', b'execution_id', 'plan_id', b'plan_id', 'status', b'status']) -> None:
|
|
773
|
+
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'execution_id', b'execution_id', 'plan_id', b'plan_id', 'status', b'status']) -> None:
|
|
747
774
|
...
|
|
748
775
|
global___PlanStatusWithID = PlanStatusWithID
|
|
749
776
|
|
|
@@ -783,33 +810,32 @@ class Plan(google.protobuf.message.Message):
|
|
|
783
810
|
"""A plan describes a motion plan"""
|
|
784
811
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
785
812
|
ID_FIELD_NUMBER: builtins.int
|
|
786
|
-
|
|
813
|
+
COMPONENT_NAME_DEPRECATED_FIELD_NUMBER: builtins.int
|
|
787
814
|
EXECUTION_ID_FIELD_NUMBER: builtins.int
|
|
788
815
|
STEPS_FIELD_NUMBER: builtins.int
|
|
816
|
+
COMPONENT_NAME_FIELD_NUMBER: builtins.int
|
|
789
817
|
id: builtins.str
|
|
790
818
|
"The plan's unique ID"
|
|
791
819
|
execution_id: builtins.str
|
|
792
820
|
'The unique ID which identifies the execution.\n Multiple plans will share the same execution_id if they were\n generated due to replanning\n '
|
|
821
|
+
component_name: builtins.str
|
|
822
|
+
'The component requested to be moved.\n Used for tracking & stopping.\n NOTE: A plan may move more components than just the\n root component.\n '
|
|
793
823
|
|
|
794
824
|
@property
|
|
795
|
-
def
|
|
796
|
-
"""
|
|
797
|
-
Used for tracking & stopping.
|
|
798
|
-
NOTE: A plan may move more components than just the
|
|
799
|
-
root component.
|
|
800
|
-
"""
|
|
825
|
+
def component_name_deprecated(self) -> common.v1.common_pb2.ResourceName:
|
|
826
|
+
"""Deprecated, use component_name field."""
|
|
801
827
|
|
|
802
828
|
@property
|
|
803
829
|
def steps(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___PlanStep]:
|
|
804
830
|
"""The steps of a plan is an ordered list of plan steps"""
|
|
805
831
|
|
|
806
|
-
def __init__(self, *, id: builtins.str=...,
|
|
832
|
+
def __init__(self, *, id: builtins.str=..., component_name_deprecated: common.v1.common_pb2.ResourceName | None=..., execution_id: builtins.str=..., steps: collections.abc.Iterable[global___PlanStep] | None=..., component_name: builtins.str=...) -> None:
|
|
807
833
|
...
|
|
808
834
|
|
|
809
|
-
def HasField(self, field_name: typing.Literal['
|
|
835
|
+
def HasField(self, field_name: typing.Literal['component_name_deprecated', b'component_name_deprecated']) -> builtins.bool:
|
|
810
836
|
...
|
|
811
837
|
|
|
812
|
-
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'execution_id', b'execution_id', 'id', b'id', 'steps', b'steps']) -> None:
|
|
838
|
+
def ClearField(self, field_name: typing.Literal['component_name', b'component_name', 'component_name_deprecated', b'component_name_deprecated', 'execution_id', b'execution_id', 'id', b'id', 'steps', b'steps']) -> None:
|
|
813
839
|
...
|
|
814
840
|
global___Plan = Plan
|
|
815
841
|
|
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/navigation/v1/navigation.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
|
|
10
10
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/sensors/v1/sensors.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
|
|
10
10
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/shell/v1/shell.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
|
|
10
10
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/slam/v1/slam.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
|
|
10
10
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/vision/v1/vision.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
|
|
10
10
|
from ....component.camera.v1 import camera_pb2 as component_dot_camera_dot_v1_dot_camera__pb2
|
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/worldstatestore/v1/world_state_store.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
|
|
10
10
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
viam/gen/stream/v1/stream_pb2.py
CHANGED
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'stream/v1/stream.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16stream/v1/stream.proto\x12\x0fproto.stream.v1"\x14\n\x12ListStreamsRequest"+\n\x13ListStreamsResponse\x12\x14\n\x05names\x18\x01 \x03(\tR\x05names"&\n\x10AddStreamRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name"\x13\n\x11AddStreamResponse")\n\x13RemoveStreamRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name"\x16\n\x14RemoveStreamResponse":\n\nResolution\x12\x14\n\x05width\x18\x01 \x01(\x05R\x05width\x12\x16\n\x06height\x18\x02 \x01(\x05R\x06height"-\n\x17GetStreamOptionsRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name"Y\n\x18GetStreamOptionsResponse\x12=\n\x0bresolutions\x18\x01 \x03(\x0b2\x1b.proto.stream.v1.ResolutionR\x0bresolutions"j\n\x17SetStreamOptionsRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12;\n\nresolution\x18\x02 \x01(\x0b2\x1b.proto.stream.v1.ResolutionR\nresolution"\x1a\n\x18SetStreamOptionsResponse2\xec\x03\n\rStreamService\x12X\n\x0bListStreams\x12#.proto.stream.v1.ListStreamsRequest\x1a$.proto.stream.v1.ListStreamsResponse\x12R\n\tAddStream\x12!.proto.stream.v1.AddStreamRequest\x1a".proto.stream.v1.AddStreamResponse\x12g\n\x10GetStreamOptions\x12(.proto.stream.v1.GetStreamOptionsRequest\x1a).proto.stream.v1.GetStreamOptionsResponse\x12g\n\x10SetStreamOptions\x12(.proto.stream.v1.SetStreamOptionsRequest\x1a).proto.stream.v1.SetStreamOptionsResponse\x12[\n\x0cRemoveStream\x12$.proto.stream.v1.RemoveStreamRequest\x1a%.proto.stream.v1.RemoveStreamResponseB.Z,github.com/edaniels/gostream/proto/stream/v1b\x06proto3')
|
|
10
10
|
_globals = globals()
|
viam/gen/tagger/v1/tagger_pb2.py
CHANGED
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
|
6
6
|
from google.protobuf.internal import builder as _builder
|
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29,
|
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'tagger/v1/tagger.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
|
|
10
10
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16tagger/v1/tagger.proto\x12\ttagger.v1\x1a google/protobuf/descriptor.proto:3\n\x04tags\x12\x1d.google.protobuf.FieldOptions\x18\xc3\xe03 \x01(\tR\x04tags:>\n\noneof_tags\x12\x1d.google.protobuf.OneofOptions\x18\xc3\xe03 \x01(\tR\toneofTagsB4Z2github.com/srikrsna/protoc-gen-gotag/tagger;taggerb\x06proto3')
|
viam/proto/app/billing.py
CHANGED
|
@@ -20,6 +20,7 @@ from ...gen.app.v1.billing_pb2 import (
|
|
|
20
20
|
InvoiceSummary,
|
|
21
21
|
PaymentMethodCard,
|
|
22
22
|
PaymentMethodType,
|
|
23
|
+
PaymentMethodUSBankAccount,
|
|
23
24
|
ResourceUsageCosts,
|
|
24
25
|
ResourceUsageCostsBySource,
|
|
25
26
|
SendPaymentRequiredEmailRequest,
|
|
@@ -29,6 +30,7 @@ from ...gen.app.v1.billing_pb2 import (
|
|
|
29
30
|
UpdateOrganizationBillingTierResponse,
|
|
30
31
|
UsageCost,
|
|
31
32
|
UsageCostType,
|
|
33
|
+
VerificationInfo,
|
|
32
34
|
)
|
|
33
35
|
|
|
34
36
|
__all__ = [
|
|
@@ -50,6 +52,7 @@ __all__ = [
|
|
|
50
52
|
"InvoiceSummary",
|
|
51
53
|
"PaymentMethodCard",
|
|
52
54
|
"PaymentMethodType",
|
|
55
|
+
"PaymentMethodUSBankAccount",
|
|
53
56
|
"ResourceUsageCosts",
|
|
54
57
|
"ResourceUsageCostsBySource",
|
|
55
58
|
"SendPaymentRequiredEmailRequest",
|
|
@@ -59,4 +62,5 @@ __all__ = [
|
|
|
59
62
|
"UpdateOrganizationBillingTierResponse",
|
|
60
63
|
"UsageCost",
|
|
61
64
|
"UsageCostType",
|
|
65
|
+
"VerificationInfo",
|
|
62
66
|
]
|
viam/proto/app/data/__init__.py
CHANGED
|
@@ -29,11 +29,15 @@ from ....gen.app.data.v1.data_pb2 import (
|
|
|
29
29
|
Classification,
|
|
30
30
|
ConfigureDatabaseUserRequest,
|
|
31
31
|
ConfigureDatabaseUserResponse,
|
|
32
|
+
CreateIndexRequest,
|
|
33
|
+
CreateIndexResponse,
|
|
32
34
|
DataRequest,
|
|
33
35
|
DeleteBinaryDataByFilterRequest,
|
|
34
36
|
DeleteBinaryDataByFilterResponse,
|
|
35
37
|
DeleteBinaryDataByIDsRequest,
|
|
36
38
|
DeleteBinaryDataByIDsResponse,
|
|
39
|
+
DeleteIndexRequest,
|
|
40
|
+
DeleteIndexResponse,
|
|
37
41
|
DeleteTabularDataRequest,
|
|
38
42
|
DeleteTabularDataResponse,
|
|
39
43
|
ExportTabularDataRequest,
|
|
@@ -43,6 +47,11 @@ from ....gen.app.data.v1.data_pb2 import (
|
|
|
43
47
|
GetDatabaseConnectionResponse,
|
|
44
48
|
GetLatestTabularDataRequest,
|
|
45
49
|
GetLatestTabularDataResponse,
|
|
50
|
+
Index,
|
|
51
|
+
IndexableCollection,
|
|
52
|
+
IndexCreator,
|
|
53
|
+
ListIndexesRequest,
|
|
54
|
+
ListIndexesResponse,
|
|
46
55
|
Order,
|
|
47
56
|
RemoveBinaryDataFromDatasetByIDsRequest,
|
|
48
57
|
RemoveBinaryDataFromDatasetByIDsResponse,
|
|
@@ -97,11 +106,15 @@ __all__ = [
|
|
|
97
106
|
"Classification",
|
|
98
107
|
"ConfigureDatabaseUserRequest",
|
|
99
108
|
"ConfigureDatabaseUserResponse",
|
|
109
|
+
"CreateIndexRequest",
|
|
110
|
+
"CreateIndexResponse",
|
|
100
111
|
"DataRequest",
|
|
101
112
|
"DeleteBinaryDataByFilterRequest",
|
|
102
113
|
"DeleteBinaryDataByFilterResponse",
|
|
103
114
|
"DeleteBinaryDataByIDsRequest",
|
|
104
115
|
"DeleteBinaryDataByIDsResponse",
|
|
116
|
+
"DeleteIndexRequest",
|
|
117
|
+
"DeleteIndexResponse",
|
|
105
118
|
"DeleteTabularDataRequest",
|
|
106
119
|
"DeleteTabularDataResponse",
|
|
107
120
|
"ExportTabularDataRequest",
|
|
@@ -111,6 +124,11 @@ __all__ = [
|
|
|
111
124
|
"GetDatabaseConnectionResponse",
|
|
112
125
|
"GetLatestTabularDataRequest",
|
|
113
126
|
"GetLatestTabularDataResponse",
|
|
127
|
+
"Index",
|
|
128
|
+
"IndexCreator",
|
|
129
|
+
"IndexableCollection",
|
|
130
|
+
"ListIndexesRequest",
|
|
131
|
+
"ListIndexesResponse",
|
|
114
132
|
"Order",
|
|
115
133
|
"RemoveBinaryDataFromDatasetByIDsRequest",
|
|
116
134
|
"RemoveBinaryDataFromDatasetByIDsResponse",
|