(self, args, **kwargs)
| 421 | |
| 422 | @add_auth_token_to_kwargs_from_cli |
| 423 | def run(self, args, **kwargs): |
| 424 | filters = {"pack": args.pack} |
| 425 | filters.update(**kwargs) |
| 426 | |
| 427 | include_attributes = self._get_include_attributes(args=args) |
| 428 | if include_attributes: |
| 429 | include_attributes = ",".join(include_attributes) |
| 430 | filters["params"] = {"include_attributes": include_attributes} |
| 431 | |
| 432 | return self.manager.get_all(**filters) |
| 433 | |
| 434 | |
| 435 | class ResourceGetCommand(ResourceViewCommand): |
nothing calls this directly
no test coverage detected