All URIs are relative to https://csp.infoblox.com/api/atcdfp/v1
Method | HTTP request | Description |
---|---|---|
CheckConfig | Post /config/check | Check Config. |
TypesConfigCheckResponse CheckConfig(ctx).Body(body).Execute()
Check Config.
package main
import (
"context"
"fmt"
"os"
"github.com/infobloxopen/bloxone-go-client/dfp"
)
func main() {
body := *dfp.NewTypesConfigCheckRequest() // TypesConfigCheckRequest |
apiClient := dfp.NewAPIClient()
resp, r, err := apiClient.AccountsAPI.CheckConfig(context.Background()).Body(body).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AccountsAPI.CheckConfig``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CheckConfig`: TypesConfigCheckResponse
fmt.Fprintf(os.Stdout, "Response from `AccountsAPI.CheckConfig`: %v\n", resp)
}
Other parameters are passed through a pointer to a AccountsAPICheckConfigRequest
struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
body | TypesConfigCheckRequest |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]