viam-sdk 0.52.0__py3-none-linux_armv7l.whl → 0.54.0__py3-none-linux_armv7l.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of viam-sdk might be problematic. Click here for more details.
- viam/app/app_client.py +3 -2
- viam/app/billing_client.py +25 -0
- viam/app/data_client.py +4 -0
- viam/gen/app/data/v1/data_pb2.py +78 -78
- viam/gen/app/data/v1/data_pb2.pyi +4 -2
- viam/gen/app/datapipelines/v1/data_pipelines_pb2.py +6 -6
- viam/gen/app/datapipelines/v1/data_pipelines_pb2.pyi +5 -2
- viam/gen/app/dataset/v1/dataset_grpc.py +10 -2
- viam/gen/app/dataset/v1/dataset_pb2.py +7 -3
- viam/gen/app/dataset/v1/dataset_pb2.pyi +36 -1
- viam/gen/app/v1/app_pb2.py +266 -266
- viam/gen/app/v1/app_pb2.pyi +12 -3
- viam/gen/app/v1/billing_grpc.py +10 -2
- viam/gen/app/v1/billing_pb2.py +13 -9
- viam/gen/app/v1/billing_pb2.pyi +39 -1
- viam/gen/component/camera/v1/camera_pb2.py +31 -31
- viam/gen/component/camera/v1/camera_pb2.pyi +14 -4
- viam/proto/app/billing.py +4 -0
- viam/proto/app/dataset/__init__.py +4 -0
- viam/services/navigation/navigation.py +2 -2
- viam/version_metadata.py +2 -2
- {viam_sdk-0.52.0.dist-info → viam_sdk-0.54.0.dist-info}/METADATA +1 -1
- {viam_sdk-0.52.0.dist-info → viam_sdk-0.54.0.dist-info}/RECORD +25 -25
- {viam_sdk-0.52.0.dist-info → viam_sdk-0.54.0.dist-info}/WHEEL +0 -0
- {viam_sdk-0.52.0.dist-info → viam_sdk-0.54.0.dist-info}/licenses/LICENSE +0 -0
viam/gen/app/v1/app_pb2.pyi
CHANGED
|
@@ -3040,6 +3040,7 @@ class ListMachineSummariesRequest(google.protobuf.message.Message):
|
|
|
3040
3040
|
LOCATION_IDS_FIELD_NUMBER: builtins.int
|
|
3041
3041
|
LIMIT_FIELD_NUMBER: builtins.int
|
|
3042
3042
|
organization_id: builtins.str
|
|
3043
|
+
'Optional organization ID. If no value is set it will search among all the organanizations the caller has access to'
|
|
3043
3044
|
limit: builtins.int
|
|
3044
3045
|
'Optional max number of machines to return; default to 100 if unset'
|
|
3045
3046
|
|
|
@@ -3182,18 +3183,22 @@ class PartSummary(google.protobuf.message.Message):
|
|
|
3182
3183
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3183
3184
|
PART_ID_FIELD_NUMBER: builtins.int
|
|
3184
3185
|
PART_NAME_FIELD_NUMBER: builtins.int
|
|
3186
|
+
IS_MAIN_PART_FIELD_NUMBER: builtins.int
|
|
3185
3187
|
LAST_ONLINE_FIELD_NUMBER: builtins.int
|
|
3186
3188
|
VIAM_SERVER_VERSION_FIELD_NUMBER: builtins.int
|
|
3187
3189
|
VIAM_AGENT_VERSION_FIELD_NUMBER: builtins.int
|
|
3188
3190
|
OS_FIELD_NUMBER: builtins.int
|
|
3189
3191
|
PLATFORM_FIELD_NUMBER: builtins.int
|
|
3190
3192
|
PUBLIC_IP_ADDRESS_FIELD_NUMBER: builtins.int
|
|
3193
|
+
DNS_NAME_FIELD_NUMBER: builtins.int
|
|
3191
3194
|
FRAGMENTS_FIELD_NUMBER: builtins.int
|
|
3192
3195
|
part_id: builtins.str
|
|
3193
3196
|
part_name: builtins.str
|
|
3197
|
+
is_main_part: builtins.bool
|
|
3194
3198
|
os: builtins.str
|
|
3195
3199
|
platform: builtins.str
|
|
3196
3200
|
public_ip_address: builtins.str
|
|
3201
|
+
dns_name: builtins.str
|
|
3197
3202
|
|
|
3198
3203
|
@property
|
|
3199
3204
|
def last_online(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
|
@@ -3211,13 +3216,17 @@ class PartSummary(google.protobuf.message.Message):
|
|
|
3211
3216
|
def fragments(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FragmentSummary]:
|
|
3212
3217
|
...
|
|
3213
3218
|
|
|
3214
|
-
def __init__(self, *, part_id: builtins.str=..., part_name: builtins.str=..., 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=..., fragments: collections.abc.Iterable[global___FragmentSummary] | None=...) -> None:
|
|
3219
|
+
def __init__(self, *, part_id: builtins.str=..., part_name: builtins.str=..., is_main_part: builtins.bool=..., 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:
|
|
3215
3220
|
...
|
|
3216
3221
|
|
|
3217
|
-
def HasField(self, field_name: typing.Literal['_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', '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:
|
|
3222
|
+
def HasField(self, field_name: typing.Literal['_dns_name', b'_dns_name', '_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_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:
|
|
3218
3223
|
...
|
|
3219
3224
|
|
|
3220
|
-
def ClearField(self, field_name: typing.Literal['_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', 'fragments', b'fragments', 'last_online', b'last_online', 'os', b'os', 'part_id', b'part_id', 'part_name', b'part_name', 'platform', b'platform', 'public_ip_address', b'public_ip_address', 'viam_agent_version', b'viam_agent_version', 'viam_server_version', b'viam_server_version']) -> None:
|
|
3225
|
+
def ClearField(self, field_name: typing.Literal['_dns_name', b'_dns_name', '_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_online', b'last_online', 'os', b'os', 'part_id', b'part_id', 'part_name', b'part_name', 'platform', b'platform', 'public_ip_address', b'public_ip_address', 'viam_agent_version', b'viam_agent_version', 'viam_server_version', b'viam_server_version']) -> None:
|
|
3226
|
+
...
|
|
3227
|
+
|
|
3228
|
+
@typing.overload
|
|
3229
|
+
def WhichOneof(self, oneof_group: typing.Literal['_dns_name', b'_dns_name']) -> typing.Literal['dns_name'] | None:
|
|
3221
3230
|
...
|
|
3222
3231
|
|
|
3223
3232
|
@typing.overload
|
viam/gen/app/v1/billing_grpc.py
CHANGED
|
@@ -38,8 +38,12 @@ class BillingServiceBase(abc.ABC):
|
|
|
38
38
|
async def UpdateOrganizationBillingTier(self, stream: 'grpclib.server.Stream[app.v1.billing_pb2.UpdateOrganizationBillingTierRequest, app.v1.billing_pb2.UpdateOrganizationBillingTierResponse]') -> None:
|
|
39
39
|
pass
|
|
40
40
|
|
|
41
|
+
@abc.abstractmethod
|
|
42
|
+
async def CreateInvoiceAndChargeImmediately(self, stream: 'grpclib.server.Stream[app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyRequest, app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyResponse]') -> None:
|
|
43
|
+
pass
|
|
44
|
+
|
|
41
45
|
def __mapping__(self) -> typing.Dict[str, grpclib.const.Handler]:
|
|
42
|
-
return {'/viam.app.v1.BillingService/GetCurrentMonthUsage': grpclib.const.Handler(self.GetCurrentMonthUsage, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetCurrentMonthUsageRequest, app.v1.billing_pb2.GetCurrentMonthUsageResponse), '/viam.app.v1.BillingService/GetOrgBillingInformation': grpclib.const.Handler(self.GetOrgBillingInformation, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetOrgBillingInformationRequest, app.v1.billing_pb2.GetOrgBillingInformationResponse), '/viam.app.v1.BillingService/GetInvoicesSummary': grpclib.const.Handler(self.GetInvoicesSummary, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetInvoicesSummaryRequest, app.v1.billing_pb2.GetInvoicesSummaryResponse), '/viam.app.v1.BillingService/GetInvoicePdf': grpclib.const.Handler(self.GetInvoicePdf, grpclib.const.Cardinality.UNARY_STREAM, app.v1.billing_pb2.GetInvoicePdfRequest, app.v1.billing_pb2.GetInvoicePdfResponse), '/viam.app.v1.BillingService/SendPaymentRequiredEmail': grpclib.const.Handler(self.SendPaymentRequiredEmail, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.SendPaymentRequiredEmailRequest, app.v1.billing_pb2.SendPaymentRequiredEmailResponse), '/viam.app.v1.BillingService/GetAvailableBillingTiers': grpclib.const.Handler(self.GetAvailableBillingTiers, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetAvailableBillingTiersRequest, app.v1.billing_pb2.GetAvailableBillingTiersResponse), '/viam.app.v1.BillingService/UpdateOrganizationBillingTier': grpclib.const.Handler(self.UpdateOrganizationBillingTier, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.UpdateOrganizationBillingTierRequest, app.v1.billing_pb2.UpdateOrganizationBillingTierResponse)}
|
|
46
|
+
return {'/viam.app.v1.BillingService/GetCurrentMonthUsage': grpclib.const.Handler(self.GetCurrentMonthUsage, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetCurrentMonthUsageRequest, app.v1.billing_pb2.GetCurrentMonthUsageResponse), '/viam.app.v1.BillingService/GetOrgBillingInformation': grpclib.const.Handler(self.GetOrgBillingInformation, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetOrgBillingInformationRequest, app.v1.billing_pb2.GetOrgBillingInformationResponse), '/viam.app.v1.BillingService/GetInvoicesSummary': grpclib.const.Handler(self.GetInvoicesSummary, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetInvoicesSummaryRequest, app.v1.billing_pb2.GetInvoicesSummaryResponse), '/viam.app.v1.BillingService/GetInvoicePdf': grpclib.const.Handler(self.GetInvoicePdf, grpclib.const.Cardinality.UNARY_STREAM, app.v1.billing_pb2.GetInvoicePdfRequest, app.v1.billing_pb2.GetInvoicePdfResponse), '/viam.app.v1.BillingService/SendPaymentRequiredEmail': grpclib.const.Handler(self.SendPaymentRequiredEmail, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.SendPaymentRequiredEmailRequest, app.v1.billing_pb2.SendPaymentRequiredEmailResponse), '/viam.app.v1.BillingService/GetAvailableBillingTiers': grpclib.const.Handler(self.GetAvailableBillingTiers, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.GetAvailableBillingTiersRequest, app.v1.billing_pb2.GetAvailableBillingTiersResponse), '/viam.app.v1.BillingService/UpdateOrganizationBillingTier': grpclib.const.Handler(self.UpdateOrganizationBillingTier, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.UpdateOrganizationBillingTierRequest, app.v1.billing_pb2.UpdateOrganizationBillingTierResponse), '/viam.app.v1.BillingService/CreateInvoiceAndChargeImmediately': grpclib.const.Handler(self.CreateInvoiceAndChargeImmediately, grpclib.const.Cardinality.UNARY_UNARY, app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyRequest, app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyResponse)}
|
|
43
47
|
|
|
44
48
|
class UnimplementedBillingServiceBase(BillingServiceBase):
|
|
45
49
|
|
|
@@ -64,6 +68,9 @@ class UnimplementedBillingServiceBase(BillingServiceBase):
|
|
|
64
68
|
async def UpdateOrganizationBillingTier(self, stream: 'grpclib.server.Stream[app.v1.billing_pb2.UpdateOrganizationBillingTierRequest, app.v1.billing_pb2.UpdateOrganizationBillingTierResponse]') -> None:
|
|
65
69
|
raise grpclib.exceptions.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
66
70
|
|
|
71
|
+
async def CreateInvoiceAndChargeImmediately(self, stream: 'grpclib.server.Stream[app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyRequest, app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyResponse]') -> None:
|
|
72
|
+
raise grpclib.exceptions.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
73
|
+
|
|
67
74
|
class BillingServiceStub:
|
|
68
75
|
|
|
69
76
|
def __init__(self, channel: grpclib.client.Channel) -> None:
|
|
@@ -73,4 +80,5 @@ class BillingServiceStub:
|
|
|
73
80
|
self.GetInvoicePdf = grpclib.client.UnaryStreamMethod(channel, '/viam.app.v1.BillingService/GetInvoicePdf', app.v1.billing_pb2.GetInvoicePdfRequest, app.v1.billing_pb2.GetInvoicePdfResponse)
|
|
74
81
|
self.SendPaymentRequiredEmail = grpclib.client.UnaryUnaryMethod(channel, '/viam.app.v1.BillingService/SendPaymentRequiredEmail', app.v1.billing_pb2.SendPaymentRequiredEmailRequest, app.v1.billing_pb2.SendPaymentRequiredEmailResponse)
|
|
75
82
|
self.GetAvailableBillingTiers = grpclib.client.UnaryUnaryMethod(channel, '/viam.app.v1.BillingService/GetAvailableBillingTiers', app.v1.billing_pb2.GetAvailableBillingTiersRequest, app.v1.billing_pb2.GetAvailableBillingTiersResponse)
|
|
76
|
-
self.UpdateOrganizationBillingTier = grpclib.client.UnaryUnaryMethod(channel, '/viam.app.v1.BillingService/UpdateOrganizationBillingTier', app.v1.billing_pb2.UpdateOrganizationBillingTierRequest, app.v1.billing_pb2.UpdateOrganizationBillingTierResponse)
|
|
83
|
+
self.UpdateOrganizationBillingTier = grpclib.client.UnaryUnaryMethod(channel, '/viam.app.v1.BillingService/UpdateOrganizationBillingTier', app.v1.billing_pb2.UpdateOrganizationBillingTierRequest, app.v1.billing_pb2.UpdateOrganizationBillingTierResponse)
|
|
84
|
+
self.CreateInvoiceAndChargeImmediately = grpclib.client.UnaryUnaryMethod(channel, '/viam.app.v1.BillingService/CreateInvoiceAndChargeImmediately', app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyRequest, app.v1.billing_pb2.CreateInvoiceAndChargeImmediatelyResponse)
|
viam/gen/app/v1/billing_pb2.py
CHANGED
|
@@ -7,7 +7,7 @@ from google.protobuf.internal import builder as _builder
|
|
|
7
7
|
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'app/v1/billing.proto')
|
|
8
8
|
_sym_db = _symbol_database.Default()
|
|
9
9
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
10
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x14app/v1/billing.proto\x12\x0bviam.app.v1\x1a\x1fgoogle/protobuf/timestamp.proto"\x8e\x02\n\x0eInvoiceSummary\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12=\n\x0cinvoice_date\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x0binvoiceDate\x12%\n\x0einvoice_amount\x18\x03 \x01(\x01R\rinvoiceAmount\x12\x16\n\x06status\x18\x04 \x01(\tR\x06status\x125\n\x08due_date\x18\x05 \x01(\x0b2\x1a.google.protobuf.TimestampR\x07dueDate\x127\n\tpaid_date\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampR\x08paidDate"S\n\x11PaymentMethodCard\x12\x14\n\x05brand\x18\x01 \x01(\tR\x05brand\x12(\n\x10last_four_digits\x18\x02 \x01(\tR\x0elastFourDigits"4\n\x1bGetCurrentMonthUsageRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"`\n\tUsageCost\x12?\n\rresource_type\x18\x01 \x01(\x0e2\x1a.viam.app.v1.UsageCostTypeR\x0cresourceType\x12\x12\n\x04cost\x18\x02 \x01(\x01R\x04cost"\xc6\x01\n\x1aResourceUsageCostsBySource\x128\n\x0bsource_type\x18\x01 \x01(\x0e2\x17.viam.app.v1.SourceTypeR\nsourceType\x12Q\n\x14resource_usage_costs\x18\x02 \x01(\x0b2\x1f.viam.app.v1.ResourceUsageCostsR\x12resourceUsageCosts\x12\x1b\n\ttier_name\x18\x03 \x01(\tR\x08tierName"\xcf\x01\n\x12ResourceUsageCosts\x127\n\x0busage_costs\x18\x01 \x03(\x0b2\x16.viam.app.v1.UsageCostR\nusageCosts\x12\x1a\n\x08discount\x18\x02 \x01(\x01R\x08discount\x12.\n\x13total_with_discount\x18\x03 \x01(\x01R\x11totalWithDiscount\x124\n\x16total_without_discount\x18\x04 \x01(\x01R\x14totalWithoutDiscount"\xcd\x07\n\x1cGetCurrentMonthUsageResponse\x129\n\nstart_date\x18\x01 \x01(\x0b2\x1a.google.protobuf.TimestampR\tstartDate\x125\n\x08end_date\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x07endDate\x12k\n\x1eresource_usage_costs_by_source\x18\x0e \x03(\x0b2\'.viam.app.v1.ResourceUsageCostsBySourceR\x1aresourceUsageCostsBySource\x12\x1a\n\x08subtotal\x18\x0f \x01(\x01R\x08subtotal\x12;\n\x18cloud_storage_usage_cost\x18\x03 \x01(\x01B\x02\x18\x01R\x15cloudStorageUsageCost\x127\n\x16data_upload_usage_cost\x18\x04 \x01(\x01B\x02\x18\x01R\x13dataUploadUsageCost\x125\n\x15data_egres_usage_cost\x18\x05 \x01(\x01B\x02\x18\x01R\x12dataEgresUsageCost\x12=\n\x19remote_control_usage_cost\x18\x06 \x01(\x01B\x02\x18\x01R\x16remoteControlUsageCost\x12A\n\x1bstandard_compute_usage_cost\x18\x07 \x01(\x01B\x02\x18\x01R\x18standardComputeUsageCost\x12+\n\x0fdiscount_amount\x18\x08 \x01(\x01B\x02\x18\x01R\x0ediscountAmount\x12=\n\x19total_usage_with_discount\x18\t \x01(\x01B\x02\x18\x01R\x16totalUsageWithDiscount\x12C\n\x1ctotal_usage_without_discount\x18\n \x01(\x01B\x02\x18\x01R\x19totalUsageWithoutDiscount\x127\n\x16per_machine_usage_cost\x18\x0b \x01(\x01B\x02\x18\x01R\x13perMachineUsageCost\x12Q\n$binary_data_cloud_storage_usage_cost\x18\x0c \x01(\x01B\x02\x18\x01R\x1fbinaryDataCloudStorageUsageCost\x12F\n\x1eother_cloud_storage_usage_cost\x18\r \x01(\x01B\x02\x18\x01R\x1aotherCloudStorageUsageCost"8\n\x1fGetOrgBillingInformationRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\xfc\x01\n GetOrgBillingInformationResponse\x122\n\x04type\x18\x01 \x01(\x0e2\x1e.viam.app.v1.PaymentMethodTypeR\x04type\x12#\n\rbilling_email\x18\x02 \x01(\tR\x0cbillingEmail\x12;\n\x06method\x18\x03 \x01(\x0b2\x1e.viam.app.v1.PaymentMethodCardH\x00R\x06method\x88\x01\x01\x12&\n\x0cbilling_tier\x18\x04 \x01(\tH\x01R\x0bbillingTier\x88\x01\x01B\t\n\x07_methodB\x0f\n\r_billing_tier"2\n\x19GetInvoicesSummaryRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\x86\x01\n\x1aGetInvoicesSummaryResponse\x12/\n\x13outstanding_balance\x18\x01 \x01(\x01R\x12outstandingBalance\x127\n\x08invoices\x18\x02 \x03(\x0b2\x1b.viam.app.v1.InvoiceSummaryR\x08invoices"=\n\x14GetInvoicePdfRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x15\n\x06org_id\x18\x02 \x01(\tR\x05orgId"-\n\x15GetInvoicePdfResponse\x12\x14\n\x05chunk\x18\x01 \x01(\x0cR\x05chunk"z\n\x1fSendPaymentRequiredEmailRequest\x12&\n\x0fcustomer_org_id\x18\x01 \x01(\tR\rcustomerOrgId\x12/\n\x14billing_owner_org_id\x18\x02 \x01(\tR\x11billingOwnerOrgId""\n SendPaymentRequiredEmailResponse"!\n\x1fGetAvailableBillingTiersRequest"8\n GetAvailableBillingTiersResponse\x12\x14\n\x05tiers\x18\x01 \x03(\tR\x05tiers"r\n$UpdateOrganizationBillingTierRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12!\n\x0cbilling_tier\x18\x02 \x01(\tR\x0bbillingTier"\'\n%UpdateOrganizationBillingTierResponse*V\n\x11PaymentMethodType\x12#\n\x1fPAYMENT_METHOD_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18PAYMENT_METHOD_TYPE_CARD\x10\x01*\xa8\x08\n\rUsageCostType\x12\x1f\n\x1bUSAGE_COST_TYPE_UNSPECIFIED\x10\x00\x12#\n\x1bUSAGE_COST_TYPE_DATA_UPLOAD\x10\x01\x1a\x02\x08\x01\x12#\n\x1bUSAGE_COST_TYPE_DATA_EGRESS\x10\x02\x1a\x02\x08\x01\x12"\n\x1eUSAGE_COST_TYPE_REMOTE_CONTROL\x10\x03\x12$\n USAGE_COST_TYPE_STANDARD_COMPUTE\x10\x04\x12%\n\x1dUSAGE_COST_TYPE_CLOUD_STORAGE\x10\x05\x1a\x02\x08\x01\x12-\n)USAGE_COST_TYPE_BINARY_DATA_CLOUD_STORAGE\x10\x06\x12+\n#USAGE_COST_TYPE_OTHER_CLOUD_STORAGE\x10\x07\x1a\x02\x08\x01\x12\x1f\n\x1bUSAGE_COST_TYPE_PER_MACHINE\x10\x08\x12(\n$USAGE_COST_TYPE_TRIGGER_NOTIFICATION\x10\t\x12.\n*USAGE_COST_TYPE_TABULAR_DATA_CLOUD_STORAGE\x10\n\x120\n,USAGE_COST_TYPE_CONFIG_HISTORY_CLOUD_STORAGE\x10\x0b\x12&\n"USAGE_COST_TYPE_LOGS_CLOUD_STORAGE\x10\x0c\x12/\n+USAGE_COST_TYPE_TRAINING_LOGS_CLOUD_STORAGE\x10\r\x12*\n&USAGE_COST_TYPE_PACKAGES_CLOUD_STORAGE\x10\x0e\x12&\n"USAGE_COST_TYPE_BINARY_DATA_UPLOAD\x10\x0f\x12\'\n#USAGE_COST_TYPE_TABULAR_DATA_UPLOAD\x10\x10\x12\x1f\n\x1bUSAGE_COST_TYPE_LOGS_UPLOAD\x10\x11\x12&\n"USAGE_COST_TYPE_BINARY_DATA_EGRESS\x10\x12\x12\'\n#USAGE_COST_TYPE_TABULAR_DATA_EGRESS\x10\x13\x12\x1f\n\x1bUSAGE_COST_TYPE_LOGS_EGRESS\x10\x14\x12(\n$USAGE_COST_TYPE_TRAINING_LOGS_EGRESS\x10\x15\x127\n3USAGE_COST_TYPE_TABULAR_DATA_DATABASE_CLOUD_STORAGE\x10\x16\x121\n-USAGE_COST_TYPE_TABULAR_DATA_DATABASE_COMPUTE\x10\x17\x123\n/USAGE_COST_TYPE_BINARY_DATA_CROSS_REGION_EGRESS\x10\x18*X\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x13\n\x0fSOURCE_TYPE_ORG\x10\x01\x12\x18\n\x14SOURCE_TYPE_FRAGMENT\x10\x022\
|
|
10
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x14app/v1/billing.proto\x12\x0bviam.app.v1\x1a\x1fgoogle/protobuf/timestamp.proto"\x8e\x02\n\x0eInvoiceSummary\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12=\n\x0cinvoice_date\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x0binvoiceDate\x12%\n\x0einvoice_amount\x18\x03 \x01(\x01R\rinvoiceAmount\x12\x16\n\x06status\x18\x04 \x01(\tR\x06status\x125\n\x08due_date\x18\x05 \x01(\x0b2\x1a.google.protobuf.TimestampR\x07dueDate\x127\n\tpaid_date\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampR\x08paidDate"S\n\x11PaymentMethodCard\x12\x14\n\x05brand\x18\x01 \x01(\tR\x05brand\x12(\n\x10last_four_digits\x18\x02 \x01(\tR\x0elastFourDigits"4\n\x1bGetCurrentMonthUsageRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"`\n\tUsageCost\x12?\n\rresource_type\x18\x01 \x01(\x0e2\x1a.viam.app.v1.UsageCostTypeR\x0cresourceType\x12\x12\n\x04cost\x18\x02 \x01(\x01R\x04cost"\xc6\x01\n\x1aResourceUsageCostsBySource\x128\n\x0bsource_type\x18\x01 \x01(\x0e2\x17.viam.app.v1.SourceTypeR\nsourceType\x12Q\n\x14resource_usage_costs\x18\x02 \x01(\x0b2\x1f.viam.app.v1.ResourceUsageCostsR\x12resourceUsageCosts\x12\x1b\n\ttier_name\x18\x03 \x01(\tR\x08tierName"\xcf\x01\n\x12ResourceUsageCosts\x127\n\x0busage_costs\x18\x01 \x03(\x0b2\x16.viam.app.v1.UsageCostR\nusageCosts\x12\x1a\n\x08discount\x18\x02 \x01(\x01R\x08discount\x12.\n\x13total_with_discount\x18\x03 \x01(\x01R\x11totalWithDiscount\x124\n\x16total_without_discount\x18\x04 \x01(\x01R\x14totalWithoutDiscount"\xcd\x07\n\x1cGetCurrentMonthUsageResponse\x129\n\nstart_date\x18\x01 \x01(\x0b2\x1a.google.protobuf.TimestampR\tstartDate\x125\n\x08end_date\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x07endDate\x12k\n\x1eresource_usage_costs_by_source\x18\x0e \x03(\x0b2\'.viam.app.v1.ResourceUsageCostsBySourceR\x1aresourceUsageCostsBySource\x12\x1a\n\x08subtotal\x18\x0f \x01(\x01R\x08subtotal\x12;\n\x18cloud_storage_usage_cost\x18\x03 \x01(\x01B\x02\x18\x01R\x15cloudStorageUsageCost\x127\n\x16data_upload_usage_cost\x18\x04 \x01(\x01B\x02\x18\x01R\x13dataUploadUsageCost\x125\n\x15data_egres_usage_cost\x18\x05 \x01(\x01B\x02\x18\x01R\x12dataEgresUsageCost\x12=\n\x19remote_control_usage_cost\x18\x06 \x01(\x01B\x02\x18\x01R\x16remoteControlUsageCost\x12A\n\x1bstandard_compute_usage_cost\x18\x07 \x01(\x01B\x02\x18\x01R\x18standardComputeUsageCost\x12+\n\x0fdiscount_amount\x18\x08 \x01(\x01B\x02\x18\x01R\x0ediscountAmount\x12=\n\x19total_usage_with_discount\x18\t \x01(\x01B\x02\x18\x01R\x16totalUsageWithDiscount\x12C\n\x1ctotal_usage_without_discount\x18\n \x01(\x01B\x02\x18\x01R\x19totalUsageWithoutDiscount\x127\n\x16per_machine_usage_cost\x18\x0b \x01(\x01B\x02\x18\x01R\x13perMachineUsageCost\x12Q\n$binary_data_cloud_storage_usage_cost\x18\x0c \x01(\x01B\x02\x18\x01R\x1fbinaryDataCloudStorageUsageCost\x12F\n\x1eother_cloud_storage_usage_cost\x18\r \x01(\x01B\x02\x18\x01R\x1aotherCloudStorageUsageCost"8\n\x1fGetOrgBillingInformationRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\xfc\x01\n GetOrgBillingInformationResponse\x122\n\x04type\x18\x01 \x01(\x0e2\x1e.viam.app.v1.PaymentMethodTypeR\x04type\x12#\n\rbilling_email\x18\x02 \x01(\tR\x0cbillingEmail\x12;\n\x06method\x18\x03 \x01(\x0b2\x1e.viam.app.v1.PaymentMethodCardH\x00R\x06method\x88\x01\x01\x12&\n\x0cbilling_tier\x18\x04 \x01(\tH\x01R\x0bbillingTier\x88\x01\x01B\t\n\x07_methodB\x0f\n\r_billing_tier"2\n\x19GetInvoicesSummaryRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\x86\x01\n\x1aGetInvoicesSummaryResponse\x12/\n\x13outstanding_balance\x18\x01 \x01(\x01R\x12outstandingBalance\x127\n\x08invoices\x18\x02 \x03(\x0b2\x1b.viam.app.v1.InvoiceSummaryR\x08invoices"=\n\x14GetInvoicePdfRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x15\n\x06org_id\x18\x02 \x01(\tR\x05orgId"-\n\x15GetInvoicePdfResponse\x12\x14\n\x05chunk\x18\x01 \x01(\x0cR\x05chunk"z\n\x1fSendPaymentRequiredEmailRequest\x12&\n\x0fcustomer_org_id\x18\x01 \x01(\tR\rcustomerOrgId\x12/\n\x14billing_owner_org_id\x18\x02 \x01(\tR\x11billingOwnerOrgId""\n SendPaymentRequiredEmailResponse"!\n\x1fGetAvailableBillingTiersRequest"8\n GetAvailableBillingTiersResponse\x12\x14\n\x05tiers\x18\x01 \x03(\tR\x05tiers"r\n$UpdateOrganizationBillingTierRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12!\n\x0cbilling_tier\x18\x02 \x01(\tR\x0bbillingTier"\'\n%UpdateOrganizationBillingTierResponse"\xee\x01\n(CreateInvoiceAndChargeImmediatelyRequest\x12\'\n\x10org_id_to_charge\x18\x01 \x01(\tR\rorgIdToCharge\x12\x16\n\x06amount\x18\x02 \x01(\x01R\x06amount\x12%\n\x0bdescription\x18\x03 \x01(\tH\x00R\x0bdescription\x88\x01\x01\x122\n\x13org_id_for_branding\x18\x04 \x01(\tH\x01R\x10orgIdForBranding\x88\x01\x01B\x0e\n\x0c_descriptionB\x16\n\x14_org_id_for_branding"+\n)CreateInvoiceAndChargeImmediatelyResponse*V\n\x11PaymentMethodType\x12#\n\x1fPAYMENT_METHOD_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18PAYMENT_METHOD_TYPE_CARD\x10\x01*\xa8\x08\n\rUsageCostType\x12\x1f\n\x1bUSAGE_COST_TYPE_UNSPECIFIED\x10\x00\x12#\n\x1bUSAGE_COST_TYPE_DATA_UPLOAD\x10\x01\x1a\x02\x08\x01\x12#\n\x1bUSAGE_COST_TYPE_DATA_EGRESS\x10\x02\x1a\x02\x08\x01\x12"\n\x1eUSAGE_COST_TYPE_REMOTE_CONTROL\x10\x03\x12$\n USAGE_COST_TYPE_STANDARD_COMPUTE\x10\x04\x12%\n\x1dUSAGE_COST_TYPE_CLOUD_STORAGE\x10\x05\x1a\x02\x08\x01\x12-\n)USAGE_COST_TYPE_BINARY_DATA_CLOUD_STORAGE\x10\x06\x12+\n#USAGE_COST_TYPE_OTHER_CLOUD_STORAGE\x10\x07\x1a\x02\x08\x01\x12\x1f\n\x1bUSAGE_COST_TYPE_PER_MACHINE\x10\x08\x12(\n$USAGE_COST_TYPE_TRIGGER_NOTIFICATION\x10\t\x12.\n*USAGE_COST_TYPE_TABULAR_DATA_CLOUD_STORAGE\x10\n\x120\n,USAGE_COST_TYPE_CONFIG_HISTORY_CLOUD_STORAGE\x10\x0b\x12&\n"USAGE_COST_TYPE_LOGS_CLOUD_STORAGE\x10\x0c\x12/\n+USAGE_COST_TYPE_TRAINING_LOGS_CLOUD_STORAGE\x10\r\x12*\n&USAGE_COST_TYPE_PACKAGES_CLOUD_STORAGE\x10\x0e\x12&\n"USAGE_COST_TYPE_BINARY_DATA_UPLOAD\x10\x0f\x12\'\n#USAGE_COST_TYPE_TABULAR_DATA_UPLOAD\x10\x10\x12\x1f\n\x1bUSAGE_COST_TYPE_LOGS_UPLOAD\x10\x11\x12&\n"USAGE_COST_TYPE_BINARY_DATA_EGRESS\x10\x12\x12\'\n#USAGE_COST_TYPE_TABULAR_DATA_EGRESS\x10\x13\x12\x1f\n\x1bUSAGE_COST_TYPE_LOGS_EGRESS\x10\x14\x12(\n$USAGE_COST_TYPE_TRAINING_LOGS_EGRESS\x10\x15\x127\n3USAGE_COST_TYPE_TABULAR_DATA_DATABASE_CLOUD_STORAGE\x10\x16\x121\n-USAGE_COST_TYPE_TABULAR_DATA_DATABASE_COMPUTE\x10\x17\x123\n/USAGE_COST_TYPE_BINARY_DATA_CROSS_REGION_EGRESS\x10\x18*X\n\nSourceType\x12\x1b\n\x17SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x13\n\x0fSOURCE_TYPE_ORG\x10\x01\x12\x18\n\x14SOURCE_TYPE_FRAGMENT\x10\x022\xc7\x07\n\x0eBillingService\x12k\n\x14GetCurrentMonthUsage\x12(.viam.app.v1.GetCurrentMonthUsageRequest\x1a).viam.app.v1.GetCurrentMonthUsageResponse\x12w\n\x18GetOrgBillingInformation\x12,.viam.app.v1.GetOrgBillingInformationRequest\x1a-.viam.app.v1.GetOrgBillingInformationResponse\x12e\n\x12GetInvoicesSummary\x12&.viam.app.v1.GetInvoicesSummaryRequest\x1a\'.viam.app.v1.GetInvoicesSummaryResponse\x12X\n\rGetInvoicePdf\x12!.viam.app.v1.GetInvoicePdfRequest\x1a".viam.app.v1.GetInvoicePdfResponse0\x01\x12w\n\x18SendPaymentRequiredEmail\x12,.viam.app.v1.SendPaymentRequiredEmailRequest\x1a-.viam.app.v1.SendPaymentRequiredEmailResponse\x12w\n\x18GetAvailableBillingTiers\x12,.viam.app.v1.GetAvailableBillingTiersRequest\x1a-.viam.app.v1.GetAvailableBillingTiersResponse\x12\x86\x01\n\x1dUpdateOrganizationBillingTier\x121.viam.app.v1.UpdateOrganizationBillingTierRequest\x1a2.viam.app.v1.UpdateOrganizationBillingTierResponse\x12\x92\x01\n!CreateInvoiceAndChargeImmediately\x125.viam.app.v1.CreateInvoiceAndChargeImmediatelyRequest\x1a6.viam.app.v1.CreateInvoiceAndChargeImmediatelyResponseB\x18Z\x16go.viam.com/api/app/v1b\x06proto3')
|
|
11
11
|
_globals = globals()
|
|
12
12
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
13
13
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'app.v1.billing_pb2', _globals)
|
|
@@ -44,12 +44,12 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
44
44
|
_globals['_GETCURRENTMONTHUSAGERESPONSE'].fields_by_name['binary_data_cloud_storage_usage_cost']._serialized_options = b'\x18\x01'
|
|
45
45
|
_globals['_GETCURRENTMONTHUSAGERESPONSE'].fields_by_name['other_cloud_storage_usage_cost']._loaded_options = None
|
|
46
46
|
_globals['_GETCURRENTMONTHUSAGERESPONSE'].fields_by_name['other_cloud_storage_usage_cost']._serialized_options = b'\x18\x01'
|
|
47
|
-
_globals['_PAYMENTMETHODTYPE']._serialized_start =
|
|
48
|
-
_globals['_PAYMENTMETHODTYPE']._serialized_end =
|
|
49
|
-
_globals['_USAGECOSTTYPE']._serialized_start =
|
|
50
|
-
_globals['_USAGECOSTTYPE']._serialized_end =
|
|
51
|
-
_globals['_SOURCETYPE']._serialized_start =
|
|
52
|
-
_globals['_SOURCETYPE']._serialized_end =
|
|
47
|
+
_globals['_PAYMENTMETHODTYPE']._serialized_start = 3275
|
|
48
|
+
_globals['_PAYMENTMETHODTYPE']._serialized_end = 3361
|
|
49
|
+
_globals['_USAGECOSTTYPE']._serialized_start = 3364
|
|
50
|
+
_globals['_USAGECOSTTYPE']._serialized_end = 4428
|
|
51
|
+
_globals['_SOURCETYPE']._serialized_start = 4430
|
|
52
|
+
_globals['_SOURCETYPE']._serialized_end = 4518
|
|
53
53
|
_globals['_INVOICESUMMARY']._serialized_start = 71
|
|
54
54
|
_globals['_INVOICESUMMARY']._serialized_end = 341
|
|
55
55
|
_globals['_PAYMENTMETHODCARD']._serialized_start = 343
|
|
@@ -88,5 +88,9 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
88
88
|
_globals['_UPDATEORGANIZATIONBILLINGTIERREQUEST']._serialized_end = 2946
|
|
89
89
|
_globals['_UPDATEORGANIZATIONBILLINGTIERRESPONSE']._serialized_start = 2948
|
|
90
90
|
_globals['_UPDATEORGANIZATIONBILLINGTIERRESPONSE']._serialized_end = 2987
|
|
91
|
-
_globals['
|
|
92
|
-
_globals['
|
|
91
|
+
_globals['_CREATEINVOICEANDCHARGEIMMEDIATELYREQUEST']._serialized_start = 2990
|
|
92
|
+
_globals['_CREATEINVOICEANDCHARGEIMMEDIATELYREQUEST']._serialized_end = 3228
|
|
93
|
+
_globals['_CREATEINVOICEANDCHARGEIMMEDIATELYRESPONSE']._serialized_start = 3230
|
|
94
|
+
_globals['_CREATEINVOICEANDCHARGEIMMEDIATELYRESPONSE']._serialized_end = 3273
|
|
95
|
+
_globals['_BILLINGSERVICE']._serialized_start = 4521
|
|
96
|
+
_globals['_BILLINGSERVICE']._serialized_end = 5488
|
viam/gen/app/v1/billing_pb2.pyi
CHANGED
|
@@ -462,4 +462,42 @@ class UpdateOrganizationBillingTierResponse(google.protobuf.message.Message):
|
|
|
462
462
|
|
|
463
463
|
def __init__(self) -> None:
|
|
464
464
|
...
|
|
465
|
-
global___UpdateOrganizationBillingTierResponse = UpdateOrganizationBillingTierResponse
|
|
465
|
+
global___UpdateOrganizationBillingTierResponse = UpdateOrganizationBillingTierResponse
|
|
466
|
+
|
|
467
|
+
@typing.final
|
|
468
|
+
class CreateInvoiceAndChargeImmediatelyRequest(google.protobuf.message.Message):
|
|
469
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
470
|
+
ORG_ID_TO_CHARGE_FIELD_NUMBER: builtins.int
|
|
471
|
+
AMOUNT_FIELD_NUMBER: builtins.int
|
|
472
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
473
|
+
ORG_ID_FOR_BRANDING_FIELD_NUMBER: builtins.int
|
|
474
|
+
org_id_to_charge: builtins.str
|
|
475
|
+
amount: builtins.float
|
|
476
|
+
description: builtins.str
|
|
477
|
+
org_id_for_branding: builtins.str
|
|
478
|
+
|
|
479
|
+
def __init__(self, *, org_id_to_charge: builtins.str=..., amount: builtins.float=..., description: builtins.str | None=..., org_id_for_branding: builtins.str | None=...) -> None:
|
|
480
|
+
...
|
|
481
|
+
|
|
482
|
+
def HasField(self, field_name: typing.Literal['_description', b'_description', '_org_id_for_branding', b'_org_id_for_branding', 'description', b'description', 'org_id_for_branding', b'org_id_for_branding']) -> builtins.bool:
|
|
483
|
+
...
|
|
484
|
+
|
|
485
|
+
def ClearField(self, field_name: typing.Literal['_description', b'_description', '_org_id_for_branding', b'_org_id_for_branding', 'amount', b'amount', 'description', b'description', 'org_id_for_branding', b'org_id_for_branding', 'org_id_to_charge', b'org_id_to_charge']) -> None:
|
|
486
|
+
...
|
|
487
|
+
|
|
488
|
+
@typing.overload
|
|
489
|
+
def WhichOneof(self, oneof_group: typing.Literal['_description', b'_description']) -> typing.Literal['description'] | None:
|
|
490
|
+
...
|
|
491
|
+
|
|
492
|
+
@typing.overload
|
|
493
|
+
def WhichOneof(self, oneof_group: typing.Literal['_org_id_for_branding', b'_org_id_for_branding']) -> typing.Literal['org_id_for_branding'] | None:
|
|
494
|
+
...
|
|
495
|
+
global___CreateInvoiceAndChargeImmediatelyRequest = CreateInvoiceAndChargeImmediatelyRequest
|
|
496
|
+
|
|
497
|
+
@typing.final
|
|
498
|
+
class CreateInvoiceAndChargeImmediatelyResponse(google.protobuf.message.Message):
|
|
499
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
500
|
+
|
|
501
|
+
def __init__(self) -> None:
|
|
502
|
+
...
|
|
503
|
+
global___CreateInvoiceAndChargeImmediatelyResponse = CreateInvoiceAndChargeImmediatelyResponse
|
|
@@ -10,7 +10,7 @@ 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
|
|
11
11
|
from google.api import httpbody_pb2 as google_dot_api_dot_httpbody__pb2
|
|
12
12
|
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
13
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n component/camera/v1/camera.proto\x12\x18viam.component.camera.v1\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x19google/api/httpbody.proto\x1a\x1cgoogle/protobuf/struct.proto"q\n\x0fGetImageRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x02 \x01(\tR\x08mimeType\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"E\n\x10GetImageResponse\x12\x1b\n\tmime_type\x18\x01 \x01(\tR\x08mimeType\x12\x14\n\x05image\x18\x02 \x01(\x0cR\x05image"
|
|
13
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n component/camera/v1/camera.proto\x12\x18viam.component.camera.v1\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x19google/api/httpbody.proto\x1a\x1cgoogle/protobuf/struct.proto"q\n\x0fGetImageRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x02 \x01(\tR\x08mimeType\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"E\n\x10GetImageResponse\x12\x1b\n\tmime_type\x18\x01 \x01(\tR\x08mimeType\x12\x14\n\x05image\x18\x02 \x01(\x0cR\x05image"\x85\x01\n\x10GetImagesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12.\n\x13filter_source_names\x18\x02 \x03(\tR\x11filterSourceNames\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"\x9d\x01\n\x11GetImagesResponse\x127\n\x06images\x18\x01 \x03(\x0b2\x1f.viam.component.camera.v1.ImageR\x06images\x12O\n\x11response_metadata\x18\xa4\x92\x05 \x01(\x0b2 .viam.common.v1.ResponseMetadataR\x10responseMetadata"\x95\x01\n\x05Image\x12\x1f\n\x0bsource_name\x18\x01 \x01(\tR\nsourceName\x128\n\x06format\x18\x02 \x01(\x0e2 .viam.component.camera.v1.FormatR\x06format\x12\x14\n\x05image\x18\x03 \x01(\x0cR\x05image\x12\x1b\n\tmime_type\x18\x04 \x01(\tR\x08mimeType"t\n\x12RenderFrameRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x02 \x01(\tR\x08mimeType\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"v\n\x14GetPointCloudRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x02 \x01(\tR\x08mimeType\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"U\n\x15GetPointCloudResponse\x12\x1b\n\tmime_type\x18\x01 \x01(\tR\x08mimeType\x12\x1f\n\x0bpoint_cloud\x18\x02 \x01(\x0cR\npointCloud"*\n\x14GetPropertiesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name"\xd3\x02\n\x15GetPropertiesResponse\x12!\n\x0csupports_pcd\x18\x01 \x01(\x08R\x0bsupportsPcd\x12`\n\x14intrinsic_parameters\x18\x02 \x01(\x0b2-.viam.component.camera.v1.IntrinsicParametersR\x13intrinsicParameters\x12c\n\x15distortion_parameters\x18\x03 \x01(\x0b2..viam.component.camera.v1.DistortionParametersR\x14distortionParameters\x12\x1d\n\nmime_types\x18\x04 \x03(\tR\tmimeTypes\x12"\n\nframe_rate\x18\x05 \x01(\x02H\x00R\tframeRate\x88\x01\x01B\r\n\x0b_frame_rate"E\n\x07Webcams\x12:\n\x07webcams\x18\x01 \x03(\x0b2 .viam.component.camera.v1.WebcamR\x07webcams"\x9e\x01\n\x06Webcam\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x16\n\x06status\x18\x02 \x01(\tR\x06status\x12B\n\nproperties\x18\x03 \x03(\x0b2".viam.component.camera.v1.PropertyR\nproperties\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12\x0e\n\x02id\x18\x05 \x01(\tR\x02id"\x84\x01\n\x08Property\x12\x19\n\x08width_px\x18\x01 \x01(\x05R\x07widthPx\x12\x1b\n\theight_px\x18\x02 \x01(\x05R\x08heightPx\x12!\n\x0cframe_format\x18\x03 \x01(\tR\x0bframeFormat\x12\x1d\n\nframe_rate\x18\x04 \x01(\x02R\tframeRate"\xc9\x01\n\x13IntrinsicParameters\x12\x19\n\x08width_px\x18\x01 \x01(\rR\x07widthPx\x12\x1b\n\theight_px\x18\x02 \x01(\rR\x08heightPx\x12\x1c\n\nfocal_x_px\x18\x03 \x01(\x01R\x08focalXPx\x12\x1c\n\nfocal_y_px\x18\x04 \x01(\x01R\x08focalYPx\x12\x1e\n\x0bcenter_x_px\x18\x05 \x01(\x01R\tcenterXPx\x12\x1e\n\x0bcenter_y_px\x18\x06 \x01(\x01R\tcenterYPx"L\n\x14DistortionParameters\x12\x14\n\x05model\x18\x01 \x01(\tR\x05model\x12\x1e\n\nparameters\x18\x02 \x03(\x01R\nparameters*l\n\x06Format\x12\x16\n\x12FORMAT_UNSPECIFIED\x10\x00\x12\x13\n\x0fFORMAT_RAW_RGBA\x10\x01\x12\x14\n\x10FORMAT_RAW_DEPTH\x10\x02\x12\x0f\n\x0bFORMAT_JPEG\x10\x03\x12\x0e\n\nFORMAT_PNG\x10\x042\xcf\x08\n\rCameraService\x12\x95\x01\n\x08GetImage\x12).viam.component.camera.v1.GetImageRequest\x1a*.viam.component.camera.v1.GetImageResponse"2\x82\xd3\xe4\x93\x02,\x12*/viam/api/v1/component/camera/{name}/image\x12\x99\x01\n\tGetImages\x12*.viam.component.camera.v1.GetImagesRequest\x1a+.viam.component.camera.v1.GetImagesResponse"3\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/component/camera/{name}/images\x12\x8c\x01\n\x0bRenderFrame\x12,.viam.component.camera.v1.RenderFrameRequest\x1a\x14.google.api.HttpBody"9\x82\xd3\xe4\x93\x023\x121/viam/api/v1/component/camera/{name}/render_frame\x12\xaa\x01\n\rGetPointCloud\x12..viam.component.camera.v1.GetPointCloudRequest\x1a/.viam.component.camera.v1.GetPointCloudResponse"8\x82\xd3\xe4\x93\x022\x120/viam/api/v1/component/camera/{name}/point_cloud\x12\xa9\x01\n\rGetProperties\x12..viam.component.camera.v1.GetPropertiesRequest\x1a/.viam.component.camera.v1.GetPropertiesResponse"7\x82\xd3\xe4\x93\x021\x12//viam/api/v1/component/camera/{name}/properties\x12\x89\x01\n\tDoCommand\x12 .viam.common.v1.DoCommandRequest\x1a!.viam.common.v1.DoCommandResponse"7\x82\xd3\xe4\x93\x021"//viam/api/v1/component/camera/{name}/do_command\x12\x95\x01\n\rGetGeometries\x12$.viam.common.v1.GetGeometriesRequest\x1a%.viam.common.v1.GetGeometriesResponse"7\x82\xd3\xe4\x93\x021\x12//viam/api/v1/component/camera/{name}/geometriesBC\n\x1ccom.viam.component.camera.v1Z#go.viam.com/api/component/camera/v1b\x06proto3')
|
|
14
14
|
_globals = globals()
|
|
15
15
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
16
16
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'component.camera.v1.camera_pb2', _globals)
|
|
@@ -31,37 +31,37 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
31
31
|
_globals['_CAMERASERVICE'].methods_by_name['DoCommand']._serialized_options = b'\x82\xd3\xe4\x93\x021"//viam/api/v1/component/camera/{name}/do_command'
|
|
32
32
|
_globals['_CAMERASERVICE'].methods_by_name['GetGeometries']._loaded_options = None
|
|
33
33
|
_globals['_CAMERASERVICE'].methods_by_name['GetGeometries']._serialized_options = b'\x82\xd3\xe4\x93\x021\x12//viam/api/v1/component/camera/{name}/geometries'
|
|
34
|
-
_globals['_FORMAT']._serialized_start =
|
|
35
|
-
_globals['_FORMAT']._serialized_end =
|
|
34
|
+
_globals['_FORMAT']._serialized_start = 2167
|
|
35
|
+
_globals['_FORMAT']._serialized_end = 2275
|
|
36
36
|
_globals['_GETIMAGEREQUEST']._serialized_start = 173
|
|
37
37
|
_globals['_GETIMAGEREQUEST']._serialized_end = 286
|
|
38
38
|
_globals['_GETIMAGERESPONSE']._serialized_start = 288
|
|
39
39
|
_globals['_GETIMAGERESPONSE']._serialized_end = 357
|
|
40
|
-
_globals['_GETIMAGESREQUEST']._serialized_start =
|
|
41
|
-
_globals['_GETIMAGESREQUEST']._serialized_end =
|
|
42
|
-
_globals['_GETIMAGESRESPONSE']._serialized_start =
|
|
43
|
-
_globals['_GETIMAGESRESPONSE']._serialized_end =
|
|
44
|
-
_globals['_IMAGE']._serialized_start =
|
|
45
|
-
_globals['_IMAGE']._serialized_end =
|
|
46
|
-
_globals['_RENDERFRAMEREQUEST']._serialized_start =
|
|
47
|
-
_globals['_RENDERFRAMEREQUEST']._serialized_end =
|
|
48
|
-
_globals['_GETPOINTCLOUDREQUEST']._serialized_start =
|
|
49
|
-
_globals['_GETPOINTCLOUDREQUEST']._serialized_end =
|
|
50
|
-
_globals['_GETPOINTCLOUDRESPONSE']._serialized_start =
|
|
51
|
-
_globals['_GETPOINTCLOUDRESPONSE']._serialized_end =
|
|
52
|
-
_globals['_GETPROPERTIESREQUEST']._serialized_start =
|
|
53
|
-
_globals['_GETPROPERTIESREQUEST']._serialized_end =
|
|
54
|
-
_globals['_GETPROPERTIESRESPONSE']._serialized_start =
|
|
55
|
-
_globals['_GETPROPERTIESRESPONSE']._serialized_end =
|
|
56
|
-
_globals['_WEBCAMS']._serialized_start =
|
|
57
|
-
_globals['_WEBCAMS']._serialized_end =
|
|
58
|
-
_globals['_WEBCAM']._serialized_start =
|
|
59
|
-
_globals['_WEBCAM']._serialized_end =
|
|
60
|
-
_globals['_PROPERTY']._serialized_start =
|
|
61
|
-
_globals['_PROPERTY']._serialized_end =
|
|
62
|
-
_globals['_INTRINSICPARAMETERS']._serialized_start =
|
|
63
|
-
_globals['_INTRINSICPARAMETERS']._serialized_end =
|
|
64
|
-
_globals['_DISTORTIONPARAMETERS']._serialized_start =
|
|
65
|
-
_globals['_DISTORTIONPARAMETERS']._serialized_end =
|
|
66
|
-
_globals['_CAMERASERVICE']._serialized_start =
|
|
67
|
-
_globals['_CAMERASERVICE']._serialized_end =
|
|
40
|
+
_globals['_GETIMAGESREQUEST']._serialized_start = 360
|
|
41
|
+
_globals['_GETIMAGESREQUEST']._serialized_end = 493
|
|
42
|
+
_globals['_GETIMAGESRESPONSE']._serialized_start = 496
|
|
43
|
+
_globals['_GETIMAGESRESPONSE']._serialized_end = 653
|
|
44
|
+
_globals['_IMAGE']._serialized_start = 656
|
|
45
|
+
_globals['_IMAGE']._serialized_end = 805
|
|
46
|
+
_globals['_RENDERFRAMEREQUEST']._serialized_start = 807
|
|
47
|
+
_globals['_RENDERFRAMEREQUEST']._serialized_end = 923
|
|
48
|
+
_globals['_GETPOINTCLOUDREQUEST']._serialized_start = 925
|
|
49
|
+
_globals['_GETPOINTCLOUDREQUEST']._serialized_end = 1043
|
|
50
|
+
_globals['_GETPOINTCLOUDRESPONSE']._serialized_start = 1045
|
|
51
|
+
_globals['_GETPOINTCLOUDRESPONSE']._serialized_end = 1130
|
|
52
|
+
_globals['_GETPROPERTIESREQUEST']._serialized_start = 1132
|
|
53
|
+
_globals['_GETPROPERTIESREQUEST']._serialized_end = 1174
|
|
54
|
+
_globals['_GETPROPERTIESRESPONSE']._serialized_start = 1177
|
|
55
|
+
_globals['_GETPROPERTIESRESPONSE']._serialized_end = 1516
|
|
56
|
+
_globals['_WEBCAMS']._serialized_start = 1518
|
|
57
|
+
_globals['_WEBCAMS']._serialized_end = 1587
|
|
58
|
+
_globals['_WEBCAM']._serialized_start = 1590
|
|
59
|
+
_globals['_WEBCAM']._serialized_end = 1748
|
|
60
|
+
_globals['_PROPERTY']._serialized_start = 1751
|
|
61
|
+
_globals['_PROPERTY']._serialized_end = 1883
|
|
62
|
+
_globals['_INTRINSICPARAMETERS']._serialized_start = 1886
|
|
63
|
+
_globals['_INTRINSICPARAMETERS']._serialized_end = 2087
|
|
64
|
+
_globals['_DISTORTIONPARAMETERS']._serialized_start = 2089
|
|
65
|
+
_globals['_DISTORTIONPARAMETERS']._serialized_end = 2165
|
|
66
|
+
_globals['_CAMERASERVICE']._serialized_start = 2278
|
|
67
|
+
_globals['_CAMERASERVICE']._serialized_end = 3381
|
|
@@ -85,21 +85,28 @@ global___GetImageResponse = GetImageResponse
|
|
|
85
85
|
class GetImagesRequest(google.protobuf.message.Message):
|
|
86
86
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
87
87
|
NAME_FIELD_NUMBER: builtins.int
|
|
88
|
+
FILTER_SOURCE_NAMES_FIELD_NUMBER: builtins.int
|
|
88
89
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
89
90
|
name: builtins.str
|
|
90
91
|
'Name of a camera'
|
|
91
92
|
|
|
93
|
+
@property
|
|
94
|
+
def filter_source_names(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
95
|
+
"""The names of the sensors to retrieve images from. If this is not provided,
|
|
96
|
+
all images from all sensors will be returned.
|
|
97
|
+
"""
|
|
98
|
+
|
|
92
99
|
@property
|
|
93
100
|
def extra(self) -> google.protobuf.struct_pb2.Struct:
|
|
94
101
|
"""Additional arguments to the method"""
|
|
95
102
|
|
|
96
|
-
def __init__(self, *, name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
103
|
+
def __init__(self, *, name: builtins.str=..., filter_source_names: collections.abc.Iterable[builtins.str] | None=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
|
|
97
104
|
...
|
|
98
105
|
|
|
99
106
|
def HasField(self, field_name: typing.Literal['extra', b'extra']) -> builtins.bool:
|
|
100
107
|
...
|
|
101
108
|
|
|
102
|
-
def ClearField(self, field_name: typing.Literal['extra', b'extra', 'name', b'name']) -> None:
|
|
109
|
+
def ClearField(self, field_name: typing.Literal['extra', b'extra', 'filter_source_names', b'filter_source_names', 'name', b'name']) -> None:
|
|
103
110
|
...
|
|
104
111
|
global___GetImagesRequest = GetImagesRequest
|
|
105
112
|
|
|
@@ -133,17 +140,20 @@ class Image(google.protobuf.message.Message):
|
|
|
133
140
|
SOURCE_NAME_FIELD_NUMBER: builtins.int
|
|
134
141
|
FORMAT_FIELD_NUMBER: builtins.int
|
|
135
142
|
IMAGE_FIELD_NUMBER: builtins.int
|
|
143
|
+
MIME_TYPE_FIELD_NUMBER: builtins.int
|
|
136
144
|
source_name: builtins.str
|
|
137
145
|
'the name of the sensor where the image came from'
|
|
138
146
|
format: global___Format.ValueType
|
|
139
147
|
'format of the response image bytes'
|
|
140
148
|
image: builtins.bytes
|
|
141
149
|
'image in bytes'
|
|
150
|
+
mime_type: builtins.str
|
|
151
|
+
'The mime type of the image'
|
|
142
152
|
|
|
143
|
-
def __init__(self, *, source_name: builtins.str=..., format: global___Format.ValueType=..., image: builtins.bytes=...) -> None:
|
|
153
|
+
def __init__(self, *, source_name: builtins.str=..., format: global___Format.ValueType=..., image: builtins.bytes=..., mime_type: builtins.str=...) -> None:
|
|
144
154
|
...
|
|
145
155
|
|
|
146
|
-
def ClearField(self, field_name: typing.Literal['format', b'format', 'image', b'image', 'source_name', b'source_name']) -> None:
|
|
156
|
+
def ClearField(self, field_name: typing.Literal['format', b'format', 'image', b'image', 'mime_type', b'mime_type', 'source_name', b'source_name']) -> None:
|
|
147
157
|
...
|
|
148
158
|
global___Image = Image
|
|
149
159
|
|
viam/proto/app/billing.py
CHANGED
|
@@ -5,6 +5,8 @@ Do not edit manually!
|
|
|
5
5
|
|
|
6
6
|
from ...gen.app.v1.billing_grpc import BillingServiceBase, BillingServiceStub, UnimplementedBillingServiceBase
|
|
7
7
|
from ...gen.app.v1.billing_pb2 import (
|
|
8
|
+
CreateInvoiceAndChargeImmediatelyRequest,
|
|
9
|
+
CreateInvoiceAndChargeImmediatelyResponse,
|
|
8
10
|
GetAvailableBillingTiersRequest,
|
|
9
11
|
GetAvailableBillingTiersResponse,
|
|
10
12
|
GetCurrentMonthUsageRequest,
|
|
@@ -33,6 +35,8 @@ __all__ = [
|
|
|
33
35
|
"BillingServiceBase",
|
|
34
36
|
"BillingServiceStub",
|
|
35
37
|
"UnimplementedBillingServiceBase",
|
|
38
|
+
"CreateInvoiceAndChargeImmediatelyRequest",
|
|
39
|
+
"CreateInvoiceAndChargeImmediatelyResponse",
|
|
36
40
|
"GetAvailableBillingTiersRequest",
|
|
37
41
|
"GetAvailableBillingTiersResponse",
|
|
38
42
|
"GetCurrentMonthUsageRequest",
|
|
@@ -14,6 +14,8 @@ from ....gen.app.dataset.v1.dataset_pb2 import (
|
|
|
14
14
|
ListDatasetsByIDsResponse,
|
|
15
15
|
ListDatasetsByOrganizationIDRequest,
|
|
16
16
|
ListDatasetsByOrganizationIDResponse,
|
|
17
|
+
MergeDatasetsRequest,
|
|
18
|
+
MergeDatasetsResponse,
|
|
17
19
|
RenameDatasetRequest,
|
|
18
20
|
RenameDatasetResponse,
|
|
19
21
|
)
|
|
@@ -31,6 +33,8 @@ __all__ = [
|
|
|
31
33
|
"ListDatasetsByIDsResponse",
|
|
32
34
|
"ListDatasetsByOrganizationIDRequest",
|
|
33
35
|
"ListDatasetsByOrganizationIDResponse",
|
|
36
|
+
"MergeDatasetsRequest",
|
|
37
|
+
"MergeDatasetsResponse",
|
|
34
38
|
"RenameDatasetRequest",
|
|
35
39
|
"RenameDatasetResponse",
|
|
36
40
|
]
|
|
@@ -141,8 +141,8 @@ class Navigation(ServiceBase):
|
|
|
141
141
|
await my_nav.add_waypoint(point=location)
|
|
142
142
|
|
|
143
143
|
Args:
|
|
144
|
-
point (navigation.GeoPoint):
|
|
145
|
-
|
|
144
|
+
point (navigation.GeoPoint): A waypoint represented in a GeoPoint with
|
|
145
|
+
latitude and longitude values.
|
|
146
146
|
timeout (Optional[float]): An option to set how long to wait (in seconds)
|
|
147
147
|
before calling a time-out and closing the underlying RPC call.
|
|
148
148
|
|
viam/version_metadata.py
CHANGED
|
@@ -7,12 +7,12 @@ viam/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
7
7
|
viam/sessions_client.py,sha256=E4ThFCK1HCX_iAvEymvCdJ-H0ZlouzgoIwIE_nywfqc,9414
|
|
8
8
|
viam/streams.py,sha256=VoM8FSMuGZmv4RPDHQy4FfHvJq36r4NY--gkQoaFkzs,1042
|
|
9
9
|
viam/utils.py,sha256=xz7qb6bM-2qzOSQSsYHBheBidMbUAlQ2dHCi_GyPFnk,13579
|
|
10
|
-
viam/version_metadata.py,sha256=
|
|
10
|
+
viam/version_metadata.py,sha256=uAAt6t4wLZUCkcDdqSfS0KO29Xx-eSRqpfmoXJmBQsc,75
|
|
11
11
|
viam/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
viam/app/_logs.py,sha256=hWxRELRJCux-fQIQtDwztD3odjkBm7Vo8HUQ7XGICek,806
|
|
13
|
-
viam/app/app_client.py,sha256=
|
|
14
|
-
viam/app/billing_client.py,sha256
|
|
15
|
-
viam/app/data_client.py,sha256=
|
|
13
|
+
viam/app/app_client.py,sha256=65PJBo8el0Mni59N9t4X1ca1LAnzhAAjLGARJoN-f98,115050
|
|
14
|
+
viam/app/billing_client.py,sha256=-lgpGUnqHKLEmSseQ4gtHGjOT2rMHtO-0yx7dqfSdAk,7234
|
|
15
|
+
viam/app/data_client.py,sha256=HMEPW4zRYzz1XURSkJ5KurPKw3Tr5rygSkyix3SpgaQ,90696
|
|
16
16
|
viam/app/ml_training_client.py,sha256=qcnVrYETdIRusfHLpIOG8Q-QmqDIU43dKmv0pTJ5mA8,9269
|
|
17
17
|
viam/app/provisioning_client.py,sha256=Irh3waRpggZe-pPyrgk4D9fAQ48JjDE5spYyIFOJc3Y,3536
|
|
18
18
|
viam/app/viam_client.py,sha256=82feF_nxWfdZp3i3YgcPcdCBu8m74DElgyI0-0Pa3xc,10820
|
|
@@ -105,18 +105,18 @@ viam/gen/app/cloudslam/v1/cloud_slam_pb2.pyi,sha256=Yg_GCi9rlZOC3wuxPDkiy02MY4L3
|
|
|
105
105
|
viam/gen/app/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
106
|
viam/gen/app/data/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
107
|
viam/gen/app/data/v1/data_grpc.py,sha256=g78EJFuLcq5hnmqSsBfTjxoBEFojs78bLujSDRs1YBQ,23289
|
|
108
|
-
viam/gen/app/data/v1/data_pb2.py,sha256=
|
|
109
|
-
viam/gen/app/data/v1/data_pb2.pyi,sha256=
|
|
108
|
+
viam/gen/app/data/v1/data_pb2.py,sha256=VbeUP1WIeWb_fdLKBZq79s-Lc7euyX_F_c9nBqx4kAc,31337
|
|
109
|
+
viam/gen/app/data/v1/data_pb2.pyi,sha256=i3THzIuQSx4Ebr-3D9QyahdrE8gwJDt_hlDeXHmzYdU,70541
|
|
110
110
|
viam/gen/app/datapipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
111
|
viam/gen/app/datapipelines/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
viam/gen/app/datapipelines/v1/data_pipelines_grpc.py,sha256=TRAzViLS4IqsVFf1wVGSPvAebgL1rKabLYcc-fQfeq8,9464
|
|
113
|
-
viam/gen/app/datapipelines/v1/data_pipelines_pb2.py,sha256=
|
|
114
|
-
viam/gen/app/datapipelines/v1/data_pipelines_pb2.pyi,sha256=
|
|
113
|
+
viam/gen/app/datapipelines/v1/data_pipelines_pb2.py,sha256=NK-OvXtd92YJPmuSZdwsjatTy1O0rpRcmeolm2QXL6o,8525
|
|
114
|
+
viam/gen/app/datapipelines/v1/data_pipelines_pb2.pyi,sha256=YQ5DsyQiiSBjbP994Ft1ehGPksPhhCzVpwcp9qcAUKA,16846
|
|
115
115
|
viam/gen/app/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
116
|
viam/gen/app/dataset/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
-
viam/gen/app/dataset/v1/dataset_grpc.py,sha256=
|
|
118
|
-
viam/gen/app/dataset/v1/dataset_pb2.py,sha256=
|
|
119
|
-
viam/gen/app/dataset/v1/dataset_pb2.pyi,sha256=
|
|
117
|
+
viam/gen/app/dataset/v1/dataset_grpc.py,sha256=PqjTuUrTyLUbxWcQG24MZip-3AICLBgxVz-y4nf_yPI,6288
|
|
118
|
+
viam/gen/app/dataset/v1/dataset_pb2.py,sha256=XXRLM6iVPfZ_JDD51x3DUWY7gFiDLhYOACTfujVHu6k,5074
|
|
119
|
+
viam/gen/app/dataset/v1/dataset_pb2.pyi,sha256=ihYgz5nOdw-4cFZFS0OjzkE1hzllqxSR7Yi4YXeLCQQ,8129
|
|
120
120
|
viam/gen/app/datasync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
121
|
viam/gen/app/datasync/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
122
|
viam/gen/app/datasync/v1/data_sync_grpc.py,sha256=KcyJRoj2W3flZBCaBowYYigrcLiohvxM6xoWrYfA1MY,3637
|
|
@@ -139,11 +139,11 @@ viam/gen/app/packages/v1/packages_pb2.py,sha256=U8kM0VeKTU-H-amKifi2Tl3QcgAegik4
|
|
|
139
139
|
viam/gen/app/packages/v1/packages_pb2.pyi,sha256=PAjZSC90Qips9F-Q674SUFRreXXeAKqzK9fi2GVRs7g,12510
|
|
140
140
|
viam/gen/app/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
141
|
viam/gen/app/v1/app_grpc.py,sha256=GBoTfxN_hxmYk9Xq9lYh4hNxriWYA2OPl3DyTuqjObc,94649
|
|
142
|
-
viam/gen/app/v1/app_pb2.py,sha256=
|
|
143
|
-
viam/gen/app/v1/app_pb2.pyi,sha256=
|
|
144
|
-
viam/gen/app/v1/billing_grpc.py,sha256=
|
|
145
|
-
viam/gen/app/v1/billing_pb2.py,sha256=
|
|
146
|
-
viam/gen/app/v1/billing_pb2.pyi,sha256=
|
|
142
|
+
viam/gen/app/v1/app_pb2.py,sha256=BjgbE9wi7gawhT2-AufbXMOprM93nIh9PXLMxd6UJ2k,113679
|
|
143
|
+
viam/gen/app/v1/app_pb2.pyi,sha256=zzBcM-k_7Ce424UHb3q48Nen9UrYWrxbK6eemUZBPk4,236743
|
|
144
|
+
viam/gen/app/v1/billing_grpc.py,sha256=D8xx5sp0BZ1gvVtKP7ErNBTX3WkMS_Q_s5zchXhBE18,8365
|
|
145
|
+
viam/gen/app/v1/billing_pb2.py,sha256=eCfMS31vu0p1RwwkrzlRgWthwGFPdudku2ltiaIrlsA,15338
|
|
146
|
+
viam/gen/app/v1/billing_pb2.pyi,sha256=Q8-OORfbQC8atGOu7WAKUW70kiW_yUQTaY6D0dXj6qY,23465
|
|
147
147
|
viam/gen/app/v1/end_user_grpc.py,sha256=Y1Cap6qcBeik-lHt2SneDEdalgefThqAX_-6ZfsRpEc,5022
|
|
148
148
|
viam/gen/app/v1/end_user_pb2.py,sha256=gudiNcgz_ZQAaDAYzN_QznQfYV4-fteeRhugXPFeQMY,6421
|
|
149
149
|
viam/gen/app/v1/end_user_pb2.pyi,sha256=SIdI1_3370vTBGhccOKuntmebwJ2U9XjFuxa2dE6OS0,7723
|
|
@@ -184,8 +184,8 @@ viam/gen/component/button/v1/button_pb2.pyi,sha256=RUipznWLp_lp4rBOeDwYiUSf9LsBN
|
|
|
184
184
|
viam/gen/component/camera/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
185
|
viam/gen/component/camera/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
viam/gen/component/camera/v1/camera_grpc.py,sha256=3CoBBdhjiZA_BHdWNvnU8l7w4ww2N2eyWSlpHeTp7Vs,6872
|
|
187
|
-
viam/gen/component/camera/v1/camera_pb2.py,sha256=
|
|
188
|
-
viam/gen/component/camera/v1/camera_pb2.pyi,sha256=
|
|
187
|
+
viam/gen/component/camera/v1/camera_pb2.py,sha256=2a7TSrEMsNguWMlebD7DYAB-hgROblbHzRxCw8fwfJc,9858
|
|
188
|
+
viam/gen/component/camera/v1/camera_pb2.pyi,sha256=0Ew_i9-ZsdWFt2B422f7jUHGMdaryGPJuTphXxrpVaA,15563
|
|
189
189
|
viam/gen/component/encoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
190
|
viam/gen/component/encoder/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
191
|
viam/gen/component/encoder/v1/encoder_grpc.py,sha256=dHT2x5cr-3AjV9pDnOtm8rEZ4je0IsA8ojsfVFO3Nu4,5183
|
|
@@ -365,14 +365,14 @@ viam/module/service.py,sha256=QdMVFXWI1aylZOdnSeDUu-LuZ8qIWEs9QihMDyCqnjg,2383
|
|
|
365
365
|
viam/module/types.py,sha256=SLcSFN99lon-9q0eqXt5vTELS1HaAyROh27XIzX2LlU,793
|
|
366
366
|
viam/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
367
|
viam/proto/app/__init__.py,sha256=TCtuRYw6oFr3D9fWoBOq9WsXtkv_TrPKVZJxqHyawTE,16852
|
|
368
|
-
viam/proto/app/billing.py,sha256=
|
|
368
|
+
viam/proto/app/billing.py,sha256=MaWFZ-WEBDRevOlQjBTrLa67qJZCfBRHuieag8dV96M,1874
|
|
369
369
|
viam/proto/app/end_user.py,sha256=WrSxNF5MsoWSs8MrygeR_XpjTaTzUYnXMfL3gRDo3ZI,954
|
|
370
370
|
viam/proto/app/robot.py,sha256=PZAmxjZV9JQjrMT3kDAH1wL9L_MJWCHa7oRVFSNGtHQ,1804
|
|
371
371
|
viam/proto/app/agent/__init__.py,sha256=zWFqPSrcoQE-Kl7o6MawO2Y3aUMMopLoEnfrVHs4fOI,666
|
|
372
372
|
viam/proto/app/cloudslam/__init__.py,sha256=BkMbqPmLFTNt4Vh2BwlPqh3BCQgDzUbAAtFGGxqlBe0,1454
|
|
373
373
|
viam/proto/app/data/__init__.py,sha256=KdNP4hNXAhDuzrw0z4FExWvq3xnXEOWAojfagjv1lSQ,4262
|
|
374
374
|
viam/proto/app/datapipelines/__init__.py,sha256=yzoiDPig8FGN4nRqa9gdQY2waINlGp-VRO5qOBuHK6o,1581
|
|
375
|
-
viam/proto/app/dataset/__init__.py,sha256=
|
|
375
|
+
viam/proto/app/dataset/__init__.py,sha256=c6oxPVMgZTU6liwLiUUxCf0FGz5PrnEFmXCvAfZWxdM,1092
|
|
376
376
|
viam/proto/app/datasync/__init__.py,sha256=LlcDDEF5TV9IQOLAGtm63wjFEHxo15v4iLkoLsiIuHU,1094
|
|
377
377
|
viam/proto/app/mlinference/__init__.py,sha256=hxl-xumPtWzyYyMUNfldQaEDFriB8D2lcFm_8hiDErg,463
|
|
378
378
|
viam/proto/app/mltraining/__init__.py,sha256=N5CNNEAQQDX7kHr2bj9_otgKDXcI8faG_5tbo94tLxk,1510
|
|
@@ -461,7 +461,7 @@ viam/services/motion/motion.py,sha256=RKtRDTUgeR31hFRNMG91tlZKKDlabM3nnIRRDx1xXf
|
|
|
461
461
|
viam/services/motion/service.py,sha256=ngzgzbY1hqCEt4L-Xxm4csUa3xNrHa8wCSTZ0s3Hi0A,5700
|
|
462
462
|
viam/services/navigation/__init__.py,sha256=OvgTo-eqhwoHZkX9bq_Ih96d2ziGhCGerDFxj15-6KM,551
|
|
463
463
|
viam/services/navigation/client.py,sha256=S3lk8acTJw8Hmnw4O3VAD8w-5e7rctjsb0OYM9Ha7HI,4662
|
|
464
|
-
viam/services/navigation/navigation.py,sha256=
|
|
464
|
+
viam/services/navigation/navigation.py,sha256=7sdbQFcsIBIj1NR2PBHHuO3wVUq87x22gAoUJGH6tEY,10347
|
|
465
465
|
viam/services/navigation/service.py,sha256=WC2qj2b1jj7bz_i0N8eFuDZR4Rrp2CUzFVl7eC1TT48,5953
|
|
466
466
|
viam/services/slam/__init__.py,sha256=O5ChYt3WAKPOrcdBHo9v2fYSYPo-GL3VXrmBdSzj29Y,462
|
|
467
467
|
viam/services/slam/client.py,sha256=WOAaERvOQ8Vk8vFblQWDbmpEjm9ZJ5GCWBYv9pdzaSM,2938
|
|
@@ -471,7 +471,7 @@ viam/services/vision/__init__.py,sha256=g4Dnz6BFgVZpvE6j6sNwxAc2baZfAKLA6XS2GaGg
|
|
|
471
471
|
viam/services/vision/client.py,sha256=uaFMlYwKE5N_Qp803aFGfk8k6KCWPKNwUxyV_fnlBp4,7776
|
|
472
472
|
viam/services/vision/service.py,sha256=NWV3yY1ZyEbl4rrp28CtX9n-uIgyxSQbbKJTeoIVjCg,6942
|
|
473
473
|
viam/services/vision/vision.py,sha256=MrQsTarahwGMEmqWX4ODCJT5wLOGHXNEuEyTQgOvsg4,12527
|
|
474
|
-
viam_sdk-0.
|
|
475
|
-
viam_sdk-0.
|
|
476
|
-
viam_sdk-0.
|
|
477
|
-
viam_sdk-0.
|
|
474
|
+
viam_sdk-0.54.0.dist-info/METADATA,sha256=ntFI9VIeE7jrTpFDOMF54Y9Shwoe-88duzd7mxuXhYg,10320
|
|
475
|
+
viam_sdk-0.54.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
476
|
+
viam_sdk-0.54.0.dist-info/licenses/LICENSE,sha256=yVuuHRzgI17MzTVgt3LsHvuX80innw--CmNPDCzO_iw,11358
|
|
477
|
+
viam_sdk-0.54.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|