mergetbapi 1.3.23__tar.gz → 1.3.25__tar.gz
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.
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/PKG-INFO +1 -1
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/portal/v1/__init__.py +48 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi.egg-info/PKG-INFO +1 -1
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/LICENSE.md +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/README.md +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/google/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/google/api/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/grpc/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/grpc/gateway/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/grpc/gateway/protoc_gen_openapiv2/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/grpc/gateway/protoc_gen_openapiv2/options/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/portal/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/reconcile/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/validator/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/xir/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi.egg-info/SOURCES.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi.egg-info/dependency_links.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi.egg-info/not-zip-safe +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi.egg-info/requires.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi.egg-info/top_level.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/setup.cfg +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.25}/setup.py +0 -0
|
@@ -1399,6 +1399,16 @@ class ArtifactDelResponse(betterproto.Message):
|
|
|
1399
1399
|
pass
|
|
1400
1400
|
|
|
1401
1401
|
|
|
1402
|
+
@dataclass(eq=False, repr=False)
|
|
1403
|
+
class ArtifactFsDeployRequest(betterproto.Message):
|
|
1404
|
+
id: "ArtifactId" = betterproto.message_field(1)
|
|
1405
|
+
|
|
1406
|
+
|
|
1407
|
+
@dataclass(eq=False, repr=False)
|
|
1408
|
+
class ArtifactFsDeployResponse(betterproto.Message):
|
|
1409
|
+
pass
|
|
1410
|
+
|
|
1411
|
+
|
|
1402
1412
|
@dataclass(eq=False, repr=False)
|
|
1403
1413
|
class ArtifactQuota(betterproto.Message):
|
|
1404
1414
|
"""Quotas"""
|
|
@@ -2005,6 +2015,8 @@ class ActuatorRealization(betterproto.Message):
|
|
|
2005
2015
|
class LinkSegment(betterproto.Message):
|
|
2006
2016
|
endpoints: List["Endpoint"] = betterproto.message_field(1)
|
|
2007
2017
|
waypoints: List["Waypoint"] = betterproto.message_field(2)
|
|
2018
|
+
vid: int = betterproto.uint32_field(3)
|
|
2019
|
+
vni: int = betterproto.uint32_field(4)
|
|
2008
2020
|
|
|
2009
2021
|
|
|
2010
2022
|
@dataclass(eq=False, repr=False)
|
|
@@ -5083,6 +5095,23 @@ class ArtifactStub(betterproto.ServiceStub):
|
|
|
5083
5095
|
metadata=metadata,
|
|
5084
5096
|
)
|
|
5085
5097
|
|
|
5098
|
+
async def artifact_fs_deploy(
|
|
5099
|
+
self,
|
|
5100
|
+
artifact_fs_deploy_request: "ArtifactFsDeployRequest",
|
|
5101
|
+
*,
|
|
5102
|
+
timeout: Optional[float] = None,
|
|
5103
|
+
deadline: Optional["Deadline"] = None,
|
|
5104
|
+
metadata: Optional["MetadataLike"] = None
|
|
5105
|
+
) -> "ArtifactFsDeployResponse":
|
|
5106
|
+
return await self._unary_unary(
|
|
5107
|
+
"/portal.v1.Artifact/ArtifactFsDeploy",
|
|
5108
|
+
artifact_fs_deploy_request,
|
|
5109
|
+
ArtifactFsDeployResponse,
|
|
5110
|
+
timeout=timeout,
|
|
5111
|
+
deadline=deadline,
|
|
5112
|
+
metadata=metadata,
|
|
5113
|
+
)
|
|
5114
|
+
|
|
5086
5115
|
async def artifact_quota_get(
|
|
5087
5116
|
self,
|
|
5088
5117
|
artifact_quota_get_request: "ArtifactQuotaGetRequest",
|
|
@@ -7437,6 +7466,11 @@ class ArtifactBase(ServiceBase):
|
|
|
7437
7466
|
) -> "ArtifactDelResponse":
|
|
7438
7467
|
raise grpclib.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
7439
7468
|
|
|
7469
|
+
async def artifact_fs_deploy(
|
|
7470
|
+
self, artifact_fs_deploy_request: "ArtifactFsDeployRequest"
|
|
7471
|
+
) -> "ArtifactFsDeployResponse":
|
|
7472
|
+
raise grpclib.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
7473
|
+
|
|
7440
7474
|
async def artifact_quota_get(
|
|
7441
7475
|
self, artifact_quota_get_request: "ArtifactQuotaGetRequest"
|
|
7442
7476
|
) -> "ArtifactQuotaGetResponse":
|
|
@@ -7490,6 +7524,14 @@ class ArtifactBase(ServiceBase):
|
|
|
7490
7524
|
response = await self.artifact_delete(request)
|
|
7491
7525
|
await stream.send_message(response)
|
|
7492
7526
|
|
|
7527
|
+
async def __rpc_artifact_fs_deploy(
|
|
7528
|
+
self,
|
|
7529
|
+
stream: "grpclib.server.Stream[ArtifactFsDeployRequest, ArtifactFsDeployResponse]",
|
|
7530
|
+
) -> None:
|
|
7531
|
+
request = await stream.recv_message()
|
|
7532
|
+
response = await self.artifact_fs_deploy(request)
|
|
7533
|
+
await stream.send_message(response)
|
|
7534
|
+
|
|
7493
7535
|
async def __rpc_artifact_quota_get(
|
|
7494
7536
|
self,
|
|
7495
7537
|
stream: "grpclib.server.Stream[ArtifactQuotaGetRequest, ArtifactQuotaGetResponse]",
|
|
@@ -7546,6 +7588,12 @@ class ArtifactBase(ServiceBase):
|
|
|
7546
7588
|
ArtifactDelRequest,
|
|
7547
7589
|
ArtifactDelResponse,
|
|
7548
7590
|
),
|
|
7591
|
+
"/portal.v1.Artifact/ArtifactFsDeploy": grpclib.const.Handler(
|
|
7592
|
+
self.__rpc_artifact_fs_deploy,
|
|
7593
|
+
grpclib.const.Cardinality.UNARY_UNARY,
|
|
7594
|
+
ArtifactFsDeployRequest,
|
|
7595
|
+
ArtifactFsDeployResponse,
|
|
7596
|
+
),
|
|
7549
7597
|
"/portal.v1.Artifact/ArtifactQuotaGet": grpclib.const.Handler(
|
|
7550
7598
|
self.__rpc_artifact_quota_get,
|
|
7551
7599
|
grpclib.const.Cardinality.UNARY_UNARY,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mergetbapi-1.3.23 → mergetbapi-1.3.25}/mergetbapi/grpc/gateway/protoc_gen_openapiv2/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|