(self, args, **kwargs)
| 374 | |
| 375 | @add_auth_token_to_kwargs_from_cli |
| 376 | def run(self, args, **kwargs): |
| 377 | include_attributes = self._get_include_attributes(args=args) |
| 378 | if include_attributes: |
| 379 | include_attributes = ",".join(include_attributes) |
| 380 | kwargs["params"] = {"include_attributes": include_attributes} |
| 381 | |
| 382 | return self.manager.get_all(**kwargs) |
| 383 | |
| 384 | def run_and_print(self, args, **kwargs): |
| 385 | instances = self.run(args, **kwargs) |
no test coverage detected