Vendor main dependencies.
This commit is contained in:
parent
49a09ab7dd
commit
dd5e3fba01
2738 changed files with 1045689 additions and 0 deletions
108
vendor/gopkg.in/ns1/ns1-go.v2/rest/monitor_job.go
generated
vendored
Normal file
108
vendor/gopkg.in/ns1/ns1-go.v2/rest/monitor_job.go
generated
vendored
Normal file
|
@ -0,0 +1,108 @@
|
|||
package rest
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
||||
"gopkg.in/ns1/ns1-go.v2/rest/model/monitor"
|
||||
)
|
||||
|
||||
// JobsService handles 'monitoring/jobs' endpoint.
|
||||
type JobsService service
|
||||
|
||||
// List returns all monitoring jobs for the account.
|
||||
//
|
||||
// NS1 API docs: https://ns1.com/api/#jobs-get
|
||||
func (s *JobsService) List() ([]*monitor.Job, *http.Response, error) {
|
||||
req, err := s.client.NewRequest("GET", "monitoring/jobs", nil)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
||||
mjl := []*monitor.Job{}
|
||||
resp, err := s.client.Do(req, &mjl)
|
||||
if err != nil {
|
||||
return nil, resp, err
|
||||
}
|
||||
|
||||
return mjl, resp, nil
|
||||
}
|
||||
|
||||
// Get takes an ID and returns details for a specific monitoring job.
|
||||
//
|
||||
// NS1 API docs: https://ns1.com/api/#jobs-jobid-get
|
||||
func (s *JobsService) Get(id string) (*monitor.Job, *http.Response, error) {
|
||||
path := fmt.Sprintf("%s/%s", "monitoring/jobs", id)
|
||||
|
||||
req, err := s.client.NewRequest("GET", path, nil)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
||||
var mj monitor.Job
|
||||
resp, err := s.client.Do(req, &mj)
|
||||
if err != nil {
|
||||
return nil, resp, err
|
||||
}
|
||||
|
||||
return &mj, resp, nil
|
||||
}
|
||||
|
||||
// Create takes a *MonitoringJob and creates a new monitoring job.
|
||||
//
|
||||
// NS1 API docs: https://ns1.com/api/#jobs-put
|
||||
func (s *JobsService) Create(mj *monitor.Job) (*http.Response, error) {
|
||||
path := fmt.Sprintf("%s/%s", "monitoring/jobs", mj.ID)
|
||||
|
||||
req, err := s.client.NewRequest("PUT", path, &mj)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Update mon jobs' fields with data from api(ensure consistent)
|
||||
resp, err := s.client.Do(req, &mj)
|
||||
if err != nil {
|
||||
return resp, err
|
||||
}
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
// Update takes a *MonitoringJob and change the configuration details of an existing monitoring job.
|
||||
//
|
||||
// NS1 API docs: https://ns1.com/api/#jobs-jobid-post
|
||||
func (s *JobsService) Update(mj *monitor.Job) (*http.Response, error) {
|
||||
path := fmt.Sprintf("%s/%s", "monitoring/jobs", mj.ID)
|
||||
|
||||
req, err := s.client.NewRequest("POST", path, &mj)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Update mon jobs' fields with data from api(ensure consistent)
|
||||
resp, err := s.client.Do(req, &mj)
|
||||
if err != nil {
|
||||
return resp, err
|
||||
}
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
// Delete takes an ID and immediately terminates and deletes and existing monitoring job.
|
||||
//
|
||||
// NS1 API docs: https://ns1.com/api/#jobs-jobid-delete
|
||||
func (s *JobsService) Delete(id string) (*http.Response, error) {
|
||||
path := fmt.Sprintf("%s/%s", "monitoring/jobs", id)
|
||||
|
||||
req, err := s.client.NewRequest("DELETE", path, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
resp, err := s.client.Do(req, nil)
|
||||
if err != nil {
|
||||
return resp, err
|
||||
}
|
||||
|
||||
return resp, nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue