本文整理匯總了Golang中github.com/opsgenie/opsgenie-go-sdk/client.OpsGenieClient.Escalation方法的典型用法代碼示例。如果您正苦於以下問題:Golang OpsGenieClient.Escalation方法的具體用法?Golang OpsGenieClient.Escalation怎麽用?Golang OpsGenieClient.Escalation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/opsgenie/opsgenie-go-sdk/client.OpsGenieClient
的用法示例。
在下文中一共展示了OpsGenieClient.Escalation方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: main
func main() {
cli := new(ogcli.OpsGenieClient)
cli.SetAPIKey(constants.APIKey)
escCli, cliErr := cli.Escalation()
if cliErr != nil {
panic(cliErr)
}
req := esc.GetEscalationRequest{Name: ""}
response, escErr := escCli.Get(req)
if escErr != nil {
panic(escErr)
}
fmt.Printf("Id: %s\n", response.Id)
fmt.Printf("Name: %s\n", response.Name)
fmt.Printf("Team: %s\n", response.Team)
fmt.Printf("Rules:\n")
for _, rule := range response.Rules {
fmt.Printf("Delay: %d\n", rule.Delay)
fmt.Printf("Notify: %s\n", rule.Notify)
fmt.Printf("NotifyType: %s\n", rule.NotifyType)
fmt.Printf("NotifyCondition: %s\n", rule.NotifyCondition)
fmt.Printf("\n")
}
}
示例2: main
func main() {
cli := new(ogcli.OpsGenieClient)
cli.SetAPIKey(constants.APIKey)
escCli, cliErr := cli.Escalation()
if cliErr != nil {
panic(cliErr)
}
req := esc.DeleteEscalationRequest{Name: ""}
response, escErr := escCli.Delete(req)
if escErr != nil {
panic(escErr)
}
fmt.Printf("status: %s\n", response.Status)
fmt.Printf("code: %d\n", response.Code)
}
示例3: main
func main() {
cli := new(ogcli.OpsGenieClient)
cli.SetAPIKey(constants.APIKey)
escCli, cliErr := cli.Escalation()
if cliErr != nil {
panic(cliErr)
}
rules := []esc.Rule{}
rule := esc.Rule{Delay: 4, Notify: "", NotifyCondition: ""}
rules = append(rules, rule)
req := esc.UpdateEscalationRequest{Id: "", Name: "", Rules: rules}
response, escErr := escCli.Update(req)
if escErr != nil {
panic(escErr)
}
fmt.Printf("status: %s\n", response.Status)
fmt.Printf("code: %d\n", response.Code)
}