mergetbapi 1.3.31__tar.gz → 1.3.32__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.31 → mergetbapi-1.3.32}/PKG-INFO +1 -1
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/portal/v1/__init__.py +7 -7
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi.egg-info/PKG-INFO +1 -1
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/LICENSE.md +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/README.md +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/google/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/google/api/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/grpc/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/grpc/gateway/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/grpc/gateway/protoc_gen_openapiv2/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/grpc/gateway/protoc_gen_openapiv2/options/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/portal/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/reconcile/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/validator/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi/xir/__init__.py +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi.egg-info/SOURCES.txt +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi.egg-info/dependency_links.txt +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi.egg-info/not-zip-safe +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi.egg-info/requires.txt +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/mergetbapi.egg-info/top_level.txt +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/setup.cfg +0 -0
- {mergetbapi-1.3.31 → mergetbapi-1.3.32}/setup.py +0 -0
|
@@ -5354,7 +5354,7 @@ class ArtifactStub(betterproto.ServiceStub):
|
|
|
5354
5354
|
metadata=metadata,
|
|
5355
5355
|
)
|
|
5356
5356
|
|
|
5357
|
-
async def
|
|
5357
|
+
async def artifact_put(
|
|
5358
5358
|
self,
|
|
5359
5359
|
artifact_put_request_iterator: Union[
|
|
5360
5360
|
AsyncIterable[ArtifactPutRequest], Iterable[ArtifactPutRequest]
|
|
@@ -5365,7 +5365,7 @@ class ArtifactStub(betterproto.ServiceStub):
|
|
|
5365
5365
|
metadata: Optional["MetadataLike"] = None
|
|
5366
5366
|
) -> "ArtifactPutResponse":
|
|
5367
5367
|
return await self._stream_unary(
|
|
5368
|
-
"/portal.v1.Artifact/
|
|
5368
|
+
"/portal.v1.Artifact/ArtifactPut",
|
|
5369
5369
|
artifact_put_request_iterator,
|
|
5370
5370
|
ArtifactPutRequest,
|
|
5371
5371
|
ArtifactPutResponse,
|
|
@@ -7989,7 +7989,7 @@ class ArtifactBase(ServiceBase):
|
|
|
7989
7989
|
) -> "ArtifactListResponse":
|
|
7990
7990
|
raise grpclib.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
7991
7991
|
|
|
7992
|
-
async def
|
|
7992
|
+
async def artifact_put(
|
|
7993
7993
|
self, artifact_put_request_iterator: AsyncIterator[ArtifactPutRequest]
|
|
7994
7994
|
) -> "ArtifactPutResponse":
|
|
7995
7995
|
raise grpclib.GRPCError(grpclib.const.Status.UNIMPLEMENTED)
|
|
@@ -8037,11 +8037,11 @@ class ArtifactBase(ServiceBase):
|
|
|
8037
8037
|
response = await self.artifact_list(request)
|
|
8038
8038
|
await stream.send_message(response)
|
|
8039
8039
|
|
|
8040
|
-
async def
|
|
8040
|
+
async def __rpc_artifact_put(
|
|
8041
8041
|
self, stream: "grpclib.server.Stream[ArtifactPutRequest, ArtifactPutResponse]"
|
|
8042
8042
|
) -> None:
|
|
8043
8043
|
request = stream.__aiter__()
|
|
8044
|
-
response = await self.
|
|
8044
|
+
response = await self.artifact_put(request)
|
|
8045
8045
|
await stream.send_message(response)
|
|
8046
8046
|
|
|
8047
8047
|
async def __rpc_artifact_get(
|
|
@@ -8108,8 +8108,8 @@ class ArtifactBase(ServiceBase):
|
|
|
8108
8108
|
ArtifactListRequest,
|
|
8109
8109
|
ArtifactListResponse,
|
|
8110
8110
|
),
|
|
8111
|
-
"/portal.v1.Artifact/
|
|
8112
|
-
self.
|
|
8111
|
+
"/portal.v1.Artifact/ArtifactPut": grpclib.const.Handler(
|
|
8112
|
+
self.__rpc_artifact_put,
|
|
8113
8113
|
grpclib.const.Cardinality.STREAM_UNARY,
|
|
8114
8114
|
ArtifactPutRequest,
|
|
8115
8115
|
ArtifactPutResponse,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mergetbapi-1.3.31 → mergetbapi-1.3.32}/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
|