r""" Get the input arguments according to the input parameter name. Args: name(str): The input parameter name. Returns: list, return the list of argument names that associated with \ the specific parameter name.
(self, name)
| 3730 | return self.desc.type() |
| 3731 | |
| 3732 | def input(self, name): |
| 3733 | r""" |
| 3734 | |
| 3735 | Get the input arguments according to the input parameter name. |
| 3736 | |
| 3737 | Args: |
| 3738 | name(str): The input parameter name. |
| 3739 | |
| 3740 | Returns: |
| 3741 | list, return the list of argument names that associated with \ |
| 3742 | the specific parameter name. |
| 3743 | |
| 3744 | """ |
| 3745 | return self.desc.input(name) |
| 3746 | |
| 3747 | def _rename_input(self, old_name, new_name): |
| 3748 | """ |
no outgoing calls