async def rm(self, container: FileContainer, paths: List[str]) -> None: await self.stub.rm( RmRequest( bundle_id=file_container_to_bundle_id_deprecated(container), paths=paths, container=file_container_to_grpc(container), ))
async def rm(self, bundle_id: str, paths: List[str]) -> None: async with self.get_stub() as stub: await stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))
async def client(client: CompanionClient, bundle_id: str, paths: List[str]) -> None: await client.stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))
async def rm(self, container: FileContainer, paths: List[str]) -> None: await self.stub.rm( RmRequest(paths=paths, container=file_container_to_grpc(container)))
async def rm(self, bundle_id: str, paths: List[str]) -> None: await self.stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))