You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
790 B
42 lines
790 B
package grid
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
// Status check if current environment is active
|
|
func (g Grid) Status(ctx context.Context) (bool, error) {
|
|
url := "/cloudbroker/grid/status"
|
|
|
|
res, err := g.client.DecortApiCall(ctx, http.MethodPost, url, nil)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
// StatusGET check if current environment is active
|
|
func (g Grid) StatusGET(ctx context.Context) (bool, error) {
|
|
url := "/cloudbroker/grid/status"
|
|
|
|
res, err := g.client.DecortApiCall(ctx, http.MethodGet, url, nil)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|