def register_host(self, cluster_id, host_id):
     log.info(f"Registering host: {host_id} to cluster: {cluster_id}")
     host_params = models.HostCreateParams(host_id=host_id)
     self.client.register_host(cluster_id, host_params)
 def register_host(self, infra_env_id: str, host_id: str) -> None:
     log.info(f"Registering host: {host_id} to cluster: {infra_env_id}")
     host_params = models.HostCreateParams(host_id=host_id)
     self.client.v2_register_host(infra_env_id=infra_env_id,
                                  new_host_params=host_params)