github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/command/v2/create_space_command.go (about)

     1  package v2
     2  
     3  import (
     4  	"code.cloudfoundry.org/cli/command"
     5  	"code.cloudfoundry.org/cli/command/flag"
     6  	"code.cloudfoundry.org/cli/command/translatableerror"
     7  )
     8  
     9  type CreateSpaceCommand struct {
    10  	RequiredArgs    flag.Space  `positional-args:"yes"`
    11  	Organization    string      `short:"o" description:"Organization"`
    12  	Quota           string      `short:"q" description:"Quota to assign to the newly created space"`
    13  	usage           interface{} `usage:"CF_NAME create-space SPACE [-o ORG] [-q SPACE_QUOTA]"`
    14  	relatedCommands interface{} `related_commands:"set-space-isolation-segment, space-quotas, spaces, target"`
    15  }
    16  
    17  func (CreateSpaceCommand) Setup(config command.Config, ui command.UI) error {
    18  	return nil
    19  }
    20  
    21  func (CreateSpaceCommand) Execute(args []string) error {
    22  	return translatableerror.UnrefactoredCommandError{}
    23  }