github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/command/v2/update_quota_command.go (about)

     1  package v2
     2  
     3  import (
     4  	"os"
     5  
     6  	"github.com/liamawhite/cli-with-i18n/cf/cmd"
     7  	"github.com/liamawhite/cli-with-i18n/command"
     8  	"github.com/liamawhite/cli-with-i18n/command/flag"
     9  )
    10  
    11  type UpdateQuotaCommand struct {
    12  	RequiredArgs             flag.Quota               `positional-args:"yes"`
    13  	NumAppInstances          int                      `short:"a" description:"Total number of application instances. -1 represents an unlimited amount."`
    14  	AllowPaidServicePlans    bool                     `long:"allow-paid-service-plans" description:"Can provision instances of paid service plans"`
    15  	DisallowPaidServicePlans bool                     `long:"disallow-paid-service-plans" description:"Cannot provision instances of paid service plans"`
    16  	AppInstanceMemory        flag.MemoryWithUnlimited `short:"i" description:"Maximum amount of memory an application instance can have (e.g. 1024M, 1G, 10G)"`
    17  	TotalMemory              string                   `short:"m" description:"Total amount of memory (e.g. 1024M, 1G, 10G)"`
    18  	NewName                  string                   `short:"n" description:"New name"`
    19  	NumRoutes                int                      `short:"r" description:"Total number of routes"`
    20  	ReservedRoutePorts       int                      `long:"reserved-route-ports" description:"Maximum number of routes that may be created with reserved ports"`
    21  	NumServiceInstances      int                      `short:"s" description:"Total number of service instances"`
    22  	usage                    interface{}              `usage:"CF_NAME update-quota QUOTA [-m TOTAL_MEMORY] [-i INSTANCE_MEMORY] [-n NEW_NAME] [-r ROUTES] [-s SERVICE_INSTANCES] [-a APP_INSTANCES] [--allow-paid-service-plans | --disallow-paid-service-plans] [--reserved-route-ports RESERVED_ROUTE_PORTS]"`
    23  	relatedCommands          interface{}              `related_commands:"org, quota"`
    24  }
    25  
    26  func (UpdateQuotaCommand) Setup(config command.Config, ui command.UI) error {
    27  	return nil
    28  }
    29  
    30  func (UpdateQuotaCommand) Execute(args []string) error {
    31  	cmd.Main(os.Getenv("CF_TRACE"), os.Args)
    32  	return nil
    33  }