Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/viam/gen/common/v1/common_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ global___Orientation = Orientation

@typing.final
class PoseInFrame(google.protobuf.message.Message):
"""PoseInFrame contains a pose and the and the reference frame in which it was observed"""
"""PoseInFrame contains a pose and the reference frame in which it was observed"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor
REFERENCE_FRAME_FIELD_NUMBER: builtins.int
POSE_FIELD_NUMBER: builtins.int
Expand Down
46 changes: 24 additions & 22 deletions src/viam/gen/robot/v1/robot_pb2.py

Large diffs are not rendered by default.

32 changes: 30 additions & 2 deletions src/viam/gen/robot/v1/robot_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,7 @@ class GetMachineStatusResponse(google.protobuf.message.Message):
RESOURCES_FIELD_NUMBER: builtins.int
CONFIG_FIELD_NUMBER: builtins.int
STATE_FIELD_NUMBER: builtins.int
JOB_STATUSES_FIELD_NUMBER: builtins.int
state: global___GetMachineStatusResponse.State.ValueType

@property
Expand All @@ -887,16 +888,43 @@ class GetMachineStatusResponse(google.protobuf.message.Message):
def config(self) -> global___ConfigStatus:
...

def __init__(self, *, resources: collections.abc.Iterable[global___ResourceStatus] | None=..., config: global___ConfigStatus | None=..., state: global___GetMachineStatusResponse.State.ValueType=...) -> None:
@property
def job_statuses(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___JobStatus]:
...

def __init__(self, *, resources: collections.abc.Iterable[global___ResourceStatus] | None=..., config: global___ConfigStatus | None=..., state: global___GetMachineStatusResponse.State.ValueType=..., job_statuses: collections.abc.Iterable[global___JobStatus] | None=...) -> None:
...

def HasField(self, field_name: typing.Literal['config', b'config']) -> builtins.bool:
...

def ClearField(self, field_name: typing.Literal['config', b'config', 'resources', b'resources', 'state', b'state']) -> None:
def ClearField(self, field_name: typing.Literal['config', b'config', 'job_statuses', b'job_statuses', 'resources', b'resources', 'state', b'state']) -> None:
...
global___GetMachineStatusResponse = GetMachineStatusResponse

@typing.final
class JobStatus(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
JOB_NAME_FIELD_NUMBER: builtins.int
RECENT_SUCCESSFUL_RUNS_FIELD_NUMBER: builtins.int
RECENT_FAILED_RUNS_FIELD_NUMBER: builtins.int
job_name: builtins.str

@property
def recent_successful_runs(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[google.protobuf.timestamp_pb2.Timestamp]:
...

@property
def recent_failed_runs(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[google.protobuf.timestamp_pb2.Timestamp]:
...

def __init__(self, *, job_name: builtins.str=..., recent_successful_runs: collections.abc.Iterable[google.protobuf.timestamp_pb2.Timestamp] | None=..., recent_failed_runs: collections.abc.Iterable[google.protobuf.timestamp_pb2.Timestamp] | None=...) -> None:
...

def ClearField(self, field_name: typing.Literal['job_name', b'job_name', 'recent_failed_runs', b'recent_failed_runs', 'recent_successful_runs', b'recent_successful_runs']) -> None:
...
global___JobStatus = JobStatus

@typing.final
class ResourceStatus(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
Expand Down
2 changes: 2 additions & 0 deletions src/viam/proto/robot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
GetStatusResponse,
GetVersionRequest,
GetVersionResponse,
JobStatus,
ListTunnelsRequest,
ListTunnelsResponse,
LogRequest,
Expand Down Expand Up @@ -95,6 +96,7 @@
"GetStatusResponse",
"GetVersionRequest",
"GetVersionResponse",
"JobStatus",
"ListTunnelsRequest",
"ListTunnelsResponse",
"LogRequest",
Expand Down
2 changes: 1 addition & 1 deletion src/viam/version_metadata.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.59.0"

API_VERSION = "v0.1.488"
API_VERSION = "v0.1.490"
SDK_VERSION = __version__
Loading