本文整理匯總了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)
}