Skip to content
Merged
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
12 changes: 10 additions & 2 deletions src/viam/gen/app/data/v1/data_grpc.py

Large diffs are not rendered by default.

30 changes: 17 additions & 13 deletions src/viam/gen/app/data/v1/data_pb2.py

Large diffs are not rendered by default.

47 changes: 46 additions & 1 deletion src/viam/gen/app/data/v1/data_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1870,4 +1870,49 @@ class ListSavedQueriesResponse(google.protobuf.message.Message):

def ClearField(self, field_name: typing.Literal['queries', b'queries']) -> None:
...
global___ListSavedQueriesResponse = ListSavedQueriesResponse
global___ListSavedQueriesResponse = ListSavedQueriesResponse

@typing.final
class CreateBinaryDataSignedURLRequest(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
BINARY_DATA_ID_FIELD_NUMBER: builtins.int
EXPIRATION_MINUTES_FIELD_NUMBER: builtins.int
binary_data_id: builtins.str
'The binary data ID of the file to create a signed URL for.'
expiration_minutes: builtins.int
'Expiration time in minutes. Defaults to 15 minutes if not specified.\n Maximum allowed is 10080 minutes (7 days).\n '

def __init__(self, *, binary_data_id: builtins.str=..., expiration_minutes: builtins.int | None=...) -> None:
...

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

def ClearField(self, field_name: typing.Literal['_expiration_minutes', b'_expiration_minutes', 'binary_data_id', b'binary_data_id', 'expiration_minutes', b'expiration_minutes']) -> None:
...

def WhichOneof(self, oneof_group: typing.Literal['_expiration_minutes', b'_expiration_minutes']) -> typing.Literal['expiration_minutes'] | None:
...
global___CreateBinaryDataSignedURLRequest = CreateBinaryDataSignedURLRequest

@typing.final
class CreateBinaryDataSignedURLResponse(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
SIGNED_URL_FIELD_NUMBER: builtins.int
EXPIRES_AT_FIELD_NUMBER: builtins.int
signed_url: builtins.str
'The signed URL for the binary data file.'

@property
def expires_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""Expiration time of the signed URL token."""

def __init__(self, *, signed_url: builtins.str=..., expires_at: google.protobuf.timestamp_pb2.Timestamp | None=...) -> None:
...

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

def ClearField(self, field_name: typing.Literal['expires_at', b'expires_at', 'signed_url', b'signed_url']) -> None:
...
global___CreateBinaryDataSignedURLResponse = CreateBinaryDataSignedURLResponse
12 changes: 6 additions & 6 deletions src/viam/gen/app/v1/billing_pb2.py

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/viam/gen/app/v1/billing_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ class _UsageCostTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._
USAGE_COST_TYPE_TABULAR_DATA_DATABASE_CLOUD_STORAGE: _UsageCostType.ValueType
USAGE_COST_TYPE_TABULAR_DATA_DATABASE_COMPUTE: _UsageCostType.ValueType
USAGE_COST_TYPE_BINARY_DATA_CROSS_REGION_EGRESS: _UsageCostType.ValueType
USAGE_COST_TYPE_PIPELINE_SINK_CLOUD_STORAGE: _UsageCostType.ValueType
USAGE_COST_TYPE_PIPELINE_SINK_COMPUTE: _UsageCostType.ValueType

class UsageCostType(_UsageCostType, metaclass=_UsageCostTypeEnumTypeWrapper):
...
Expand Down Expand Up @@ -93,6 +95,8 @@ USAGE_COST_TYPE_TRAINING_LOGS_EGRESS: UsageCostType.ValueType
USAGE_COST_TYPE_TABULAR_DATA_DATABASE_CLOUD_STORAGE: UsageCostType.ValueType
USAGE_COST_TYPE_TABULAR_DATA_DATABASE_COMPUTE: UsageCostType.ValueType
USAGE_COST_TYPE_BINARY_DATA_CROSS_REGION_EGRESS: UsageCostType.ValueType
USAGE_COST_TYPE_PIPELINE_SINK_CLOUD_STORAGE: UsageCostType.ValueType
USAGE_COST_TYPE_PIPELINE_SINK_COMPUTE: UsageCostType.ValueType
global___UsageCostType = UsageCostType

class _SourceType:
Expand Down
4 changes: 4 additions & 0 deletions src/viam/proto/app/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
Classification,
ConfigureDatabaseUserRequest,
ConfigureDatabaseUserResponse,
CreateBinaryDataSignedURLRequest,
CreateBinaryDataSignedURLResponse,
CreateIndexRequest,
CreateIndexResponse,
CreateSavedQueryRequest,
Expand Down Expand Up @@ -117,6 +119,8 @@
"Classification",
"ConfigureDatabaseUserRequest",
"ConfigureDatabaseUserResponse",
"CreateBinaryDataSignedURLRequest",
"CreateBinaryDataSignedURLResponse",
"CreateIndexRequest",
"CreateIndexResponse",
"CreateSavedQueryRequest",
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.61.0"

API_VERSION = "v0.1.493"
API_VERSION = "v0.1.495"
SDK_VERSION = __version__
Loading