Example #1
0
 def to_flyte_idl(self):
     """
     :rtype: _node_execution_pb2.NodeExecutionGetDataResponse
     """
     return _node_execution_pb2.NodeExecutionGetDataResponse(
         inputs=self.inputs.to_flyte_idl(),
         outputs=self.outputs.to_flyte_idl(),
     )
Example #2
0
 def to_flyte_idl(self):
     """
     :rtype: _node_execution_pb2.NodeExecutionGetDataResponse
     """
     return _node_execution_pb2.NodeExecutionGetDataResponse(
         inputs=self.inputs.to_flyte_idl(),
         outputs=self.outputs.to_flyte_idl(),
         full_inputs=self.full_inputs.to_flyte_idl(),
         full_outputs=self.full_outputs.to_flyte_idl(),
         dynamic_workflow=self.dynamic_workflow.to_flyte_idl() if self.dynamic_workflow else None,
     )