def host_post_step_result(self, cluster_id, host_id, **kwargs):
     reply = models.StepReply(**kwargs)
     self.client.post_step_reply(cluster_id=cluster_id,
                                 host_id=host_id,
                                 reply=reply)
 def host_post_step_result(self, infra_env_id: str, host_id: str,
                           **kwargs) -> None:
     reply = models.StepReply(**kwargs)
     self.client.v2_post_step_reply(infra_env_id=infra_env_id,
                                    host_id=host_id,
                                    reply=reply)