(self, resource, *args, **kwargs)
| 762 | |
| 763 | class ResourceCloneCommand(ResourceCommand): |
| 764 | def __init__(self, resource, *args, **kwargs): |
| 765 | super(ResourceCloneCommand, self).__init__( |
| 766 | resource, |
| 767 | "clone", |
| 768 | "Clone a new %s." % resource.get_display_name().lower(), |
| 769 | *args, |
| 770 | **kwargs, |
| 771 | ) |
| 772 | |
| 773 | @add_auth_token_to_kwargs_from_cli |
| 774 | def run(self, args, **kwargs): |
nothing calls this directly
no test coverage detected