本文整理汇总了Golang中github.com/opsgenie/opsgenie-go-sdk/client.OpsGenieClient.Schedule方法的典型用法代码示例。如果您正苦于以下问题:Golang OpsGenieClient.Schedule方法的具体用法?Golang OpsGenieClient.Schedule怎么用?Golang OpsGenieClient.Schedule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/opsgenie/opsgenie-go-sdk/client.OpsGenieClient
的用法示例。
在下文中一共展示了OpsGenieClient.Schedule方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: main
func main() {
cli := new(ogcli.OpsGenieClient)
cli.SetAPIKey(constants.APIKey)
schCli, cliErr := cli.Schedule()
if cliErr != nil {
panic(cliErr)
}
restrictions := []sch.Restriction{}
restriction := sch.Restriction{StartDay: "", StartTime: "", EndDay: "", EndTime: ""}
restrictions = append(restrictions, restriction)
rotations := []sch.Rotation{}
rotation := sch.Rotation{Name: "", StartDate: "", EndDate: "", Participants: []string{""}, RotationType: ""}
rotations = append(rotations, rotation)
enabled := true
req := sch.UpdateScheduleRequest{Id: "", Name: "", Timezone: "", Enabled: &enabled, Rotations: rotations}
response, userErr := schCli.Update(req)
if userErr != nil {
panic(userErr)
}
fmt.Printf("status: %s\n", response.Status)
fmt.Printf("code: %d\n", response.Code)
}
示例2: main
func main() {
cli := new(ogcli.OpsGenieClient)
cli.SetAPIKey(constants.APIKey)
schCli, cliErr := cli.Schedule()
if cliErr != nil {
panic(cliErr)
}
req := sch.ListSchedulesRequest{}
response, schErr := schCli.List(req)
if schErr != nil {
panic(schErr)
}
for _, sch := range response.Schedules {
fmt.Printf("Id: %s\n", sch.Id)
fmt.Printf("Name: %s\n", sch.Name)
fmt.Printf("Team: %s\n", sch.Team)
fmt.Printf("Rules:\n")
for _, rule := range sch.Rules {
fmt.Printf("Id: %s\n", rule.Id)
fmt.Printf("Name: %s\n", rule.Name)
fmt.Printf("StartDate: %s\n", rule.StartDate)
fmt.Printf("EndDate: %s\n", rule.EndDate)
fmt.Printf("Rotation Type: %s\n", rule.RotationType)
fmt.Printf("Rotation Length: %d\n", rule.RotationLength)
fmt.Printf("Participants: %s\n", rule.Participants)
fmt.Printf("Restrictions:\n")
for _, restriction := range rule.Restrictions {
fmt.Printf("Start Day: %s\n", restriction.StartDay)
fmt.Printf("Start Time: %s\n", restriction.StartTime)
fmt.Printf("End Day: %s\n", restriction.EndDay)
fmt.Printf("End Time: %s\n", restriction.EndTime)
fmt.Printf("\n")
}
fmt.Printf("\n")
}
fmt.Printf("\n")
}
}
示例3: main
func main() {
cli := new(ogcli.OpsGenieClient)
cli.SetAPIKey(constants.APIKey)
schCli, cliErr := cli.Schedule()
if cliErr != nil {
panic(cliErr)
}
req := sch.DeleteScheduleRequest{Name: ""}
response, schErr := schCli.Delete(req)
if schErr != nil {
panic(schErr)
}
fmt.Printf("status: %s\n", response.Status)
fmt.Printf("code: %d\n", response.Code)
}