本文整理汇总了Golang中github.com/cloud66/cli.Context.Int方法的典型用法代码示例。如果您正苦于以下问题:Golang Context.Int方法的具体用法?Golang Context.Int怎么用?Golang Context.Int使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloud66/cli.Context
的用法示例。
在下文中一共展示了Context.Int方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: runNewBackup
func runNewBackup(c *cli.Context) {
stack := mustStack(c)
var flagDbTypes *string
if c.IsSet("dbtypes") {
flagDbTypes = new(string)
*flagDbTypes = c.String("dbtypes")
}
var flagFrequency *string
if c.IsSet("frequency") {
flagFrequency = new(string)
*flagFrequency = c.String("frequency")
}
var flagKeep *int
if c.IsSet("keep") {
flagKeep = new(int)
*flagKeep = c.Int("keep")
}
var flagGzip *bool
if c.IsSet("gzip") {
flagGzip = new(bool)
*flagGzip = c.Bool("gzip")
}
var flagExcludetables *string
if c.IsSet("exclude-tables") {
flagExcludetables = new(string)
*flagExcludetables = c.String("exclude-tables")
}
var flagRunonreplica *bool
if c.IsSet("run-on-replica") {
flagRunonreplica = new(bool)
*flagRunonreplica = c.Bool("run-on-replica")
}
err := client.NewBackup(stack.Uid, flagDbTypes, flagFrequency, flagKeep, flagGzip, flagExcludetables, flagRunonreplica)
if err != nil {
printFatal("Error during backup creation: " + err.Error())
return
}
fmt.Println("queued for creation")
}
示例2: runLease
func runLease(c *cli.Context) {
stack := mustStack(c)
from := c.String("from")
tto := c.Int("tto")
port := c.Int("port")
fmt.Printf("Attempting to lease from %s to port %d for %d minutes...\n", from, port, tto)
genericRes, err := client.LeaseSync(stack.Uid, &from, &tto, &port, nil)
if err != nil {
printFatal(err.Error())
}
printGenericResponse(*genericRes)
}