(self, args, **kwargs)
| 111 | |
| 112 | @resource.add_auth_token_to_kwargs_from_cli |
| 113 | def run(self, args, **kwargs): |
| 114 | alias_match = ActionAliasMatch() |
| 115 | alias_match.command = args.match_text |
| 116 | |
| 117 | match, _ = self.manager.match(alias_match, **kwargs) |
| 118 | return [match] |
| 119 | |
| 120 | def run_and_print(self, args, **kwargs): |
| 121 | instances = self.run(args, **kwargs) |
no test coverage detected