本文整理汇总了Golang中github.com/kumoru/kumoru-sdk-go/pkg/service/application.Application.Patch方法的典型用法代码示例。如果您正苦于以下问题:Golang Application.Patch方法的具体用法?Golang Application.Patch怎么用?Golang Application.Patch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/kumoru/kumoru-sdk-go/pkg/service/application.Application
的用法示例。
在下文中一共展示了Application.Patch方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Patch
//Patch an Application.
func Patch(cmd *cli.Cmd) {
uuid := cmd.String(cli.StringArg{
Name: "UUID",
Desc: "Application UUID",
HideValue: true,
})
image := cmd.String(cli.StringOpt{
Name: "IMG_URL",
Desc: "Image URL",
HideValue: true,
})
name := cmd.String(cli.StringOpt{
Name: "APP_NAME",
Desc: "Application Name",
HideValue: true,
})
certificate := cmd.String(cli.StringOpt{
Name: "certificate_file",
Desc: "File (PEM) containing the SSL certificate associated with the application",
HideValue: true,
})
envFile := cmd.String(cli.StringOpt{
Name: "env_file",
Desc: "Environment variables file",
HideValue: true,
})
certificateChain := cmd.String(cli.StringOpt{
Name: "certificate_chain_file",
Desc: "File (PEM) contianing the certificate chain associated with the public certificate (optional)",
HideValue: true,
})
privateKey := cmd.String(cli.StringOpt{
Name: "private_key_file",
Desc: "File (PEM) containing the SSL key associated with the public certificate (required if providing a certificate)",
HideValue: true,
})
sslPorts := cmd.Strings(cli.StringsOpt{
Name: "ssl_port",
Desc: "Port to be assocaited with the certificate",
HideValue: true,
})
enVars := cmd.Strings(cli.StringsOpt{
Name: "e env",
Desc: "Environment variable (i.e. MYSQL_PASSWORD=complexpassword",
HideValue: true,
})
rules := cmd.Strings(cli.StringsOpt{
Name: "r rule",
Desc: "Application Deployment rules",
HideValue: true,
})
ports := cmd.Strings(cli.StringsOpt{
Name: "p port",
Desc: "Port",
HideValue: true,
})
labels := cmd.Strings(cli.StringsOpt{
Name: "l label",
Desc: "Label associated with the aplication",
HideValue: true,
})
meta := cmd.String(cli.StringOpt{
Name: "m metadata",
Desc: "Metadata associated with the application being created. Must be JSON formatted.",
HideValue: true,
})
cmd.Action = func() {
app := application.Application{
UUID: *uuid,
}
var eVars []string
if *envFile != "" {
eVars = readEnvFile(*envFile)
} else {
eVars = *enVars
}
var m string
if *meta != "" {
mData := metaData(*meta, *labels)
mdata, err := json.Marshal(mData)
if err != nil {
log.Fatal(err)
//.........这里部分代码省略.........