本文整理匯總了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)
//.........這裏部分代碼省略.........