| 7 | ) |
| 8 | |
| 9 | type UnshareServiceCommand struct { |
| 10 | BaseCommand |
| 11 | |
| 12 | RequiredArgs flag.ShareServiceArgs `positional-args:"yes"` |
| 13 | SpaceName string `short:"s" required:"true" description:"Space to unshare the service instance from"` |
| 14 | OrgName flag.OptionalString `short:"o" required:"false" description:"Org of the other space (Default: targeted org)"` |
| 15 | Force bool `short:"f" description:"Force unshare without confirmation"` |
| 16 | relatedCommands interface{} `related_commands:"delete-service, service, services, share-service, unbind-service"` |
| 17 | } |
| 18 | |
| 19 | func (cmd UnshareServiceCommand) Usage() string { |
| 20 | return "CF_NAME unshare-service SERVICE_INSTANCE -s OTHER_SPACE [-o OTHER_ORG] [-f]" |
nothing calls this directly
no outgoing calls
no test coverage detected