mergetbapi 1.3.23__tar.gz → 1.3.24__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.24}/PKG-INFO +1 -1
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/portal/v1/__init__.py +46 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi.egg-info/PKG-INFO +1 -1
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/LICENSE.md +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/README.md +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/google/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/google/api/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/grpc/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/grpc/gateway/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/grpc/gateway/protoc_gen_openapiv2/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/grpc/gateway/protoc_gen_openapiv2/options/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/portal/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/reconcile/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/validator/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi/xir/__init__.py +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi.egg-info/SOURCES.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi.egg-info/dependency_links.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi.egg-info/not-zip-safe +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi.egg-info/requires.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/mergetbapi.egg-info/top_level.txt +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/setup.cfg +0 -0
- {mergetbapi-1.3.23 → mergetbapi-1.3.24}/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"""
|
|
@@ -5083,6 +5093,23 @@ class ArtifactStub(betterproto.ServiceStub):
|
|
|
5083
5093
|
metadata=metadata,
|
|
5084
5094
|
)
|
|
5085
5095
|
|
|
5096
|
+
async def artifact_fs_deploy(
|
|
5097
|
+
self,
|
|
5098
|
+
artifact_fs_deploy_request: "ArtifactFsDeployRequest",
|
|
5099
|
+
*,
|
|
5100
|
+
timeout: Optional[float] = None,
|
|
5101
|
+
deadline: Optional["Deadline"] = None,
|
|
5102
|
+
metadata: Optional["MetadataLike"] = None
|
|
5103
|
+
) -> "ArtifactFsDeployResponse":
|
|
5104
|
+
return await self._unary_unary(
|
|
5105
|
+
"/portal.v1.Artifact/ArtifactFsDeploy",
|
|
5106
|
+
artifact_fs_deploy_request,
|
|
5107
|
+
ArtifactFsDeployResponse,
|
|
5108
|
+
timeout=timeout,
|
|
5109
|
+
deadline=deadline,
|
|
5110
|
+
metadata=metadata,
|
|
5111
|
+
)
|
|
5112
|
+
|
|
5086
5113
|
async def artifact_quota_get(
|
|
5087
5114
|
self,
|
|
5088
5115
|
artifact_quota_get_request: "ArtifactQuotaGetRequest",
|
|
@@ -7437,6 +7464,11 @@ class ArtifactBase(ServiceBase):
|
|
|
7437
7464
|
) -> "ArtifactDelResponse":
|
|
7438
7465
|
raise grpclib.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
7439
7466
|
|
|
7467
|
+
async def artifact_fs_deploy(
|
|
7468
|
+
self, artifact_fs_deploy_request: "ArtifactFsDeployRequest"
|
|
7469
|
+
) -> "ArtifactFsDeployResponse":
|
|
7470
|
+
raise grpclib.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
7471
|
+
|
|
7440
7472
|
async def artifact_quota_get(
|
|
7441
7473
|
self, artifact_quota_get_request: "ArtifactQuotaGetRequest"
|
|
7442
7474
|
) -> "ArtifactQuotaGetResponse":
|
|
@@ -7490,6 +7522,14 @@ class ArtifactBase(ServiceBase):
|
|
|
7490
7522
|
response = await self.artifact_delete(request)
|
|
7491
7523
|
await stream.send_message(response)
|
|
7492
7524
|
|
|
7525
|
+
async def __rpc_artifact_fs_deploy(
|
|
7526
|
+
self,
|
|
7527
|
+
stream: "grpclib.server.Stream[ArtifactFsDeployRequest, ArtifactFsDeployResponse]",
|
|
7528
|
+
) -> None:
|
|
7529
|
+
request = await stream.recv_message()
|
|
7530
|
+
response = await self.artifact_fs_deploy(request)
|
|
7531
|
+
await stream.send_message(response)
|
|
7532
|
+
|
|
7493
7533
|
async def __rpc_artifact_quota_get(
|
|
7494
7534
|
self,
|
|
7495
7535
|
stream: "grpclib.server.Stream[ArtifactQuotaGetRequest, ArtifactQuotaGetResponse]",
|
|
@@ -7546,6 +7586,12 @@ class ArtifactBase(ServiceBase):
|
|
|
7546
7586
|
ArtifactDelRequest,
|
|
7547
7587
|
ArtifactDelResponse,
|
|
7548
7588
|
),
|
|
7589
|
+
"/portal.v1.Artifact/ArtifactFsDeploy": grpclib.const.Handler(
|
|
7590
|
+
self.__rpc_artifact_fs_deploy,
|
|
7591
|
+
grpclib.const.Cardinality.UNARY_UNARY,
|
|
7592
|
+
ArtifactFsDeployRequest,
|
|
7593
|
+
ArtifactFsDeployResponse,
|
|
7594
|
+
),
|
|
7549
7595
|
"/portal.v1.Artifact/ArtifactQuotaGet": grpclib.const.Handler(
|
|
7550
7596
|
self.__rpc_artifact_quota_get,
|
|
7551
7597
|
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.24}/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
|