本文整理汇总了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)
}