-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate client from commit 1973999a of spec repo
- Loading branch information
ci.datadog-api-spec
committed
Sep 15, 2022
1 parent
7e5acdc
commit c5e3fca
Showing
19 changed files
with
485 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Create a new dashboard with template variable presets using values returns "OK" response | ||
|
||
package main | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"fmt" | ||
"os" | ||
|
||
"github.com/DataDog/datadog-api-client-go/v2/api/datadog" | ||
"github.com/DataDog/datadog-api-client-go/v2/api/datadogV1" | ||
) | ||
|
||
func main() { | ||
body := datadogV1.Dashboard{ | ||
Description: *datadog.NewNullableString(nil), | ||
IsReadOnly: datadog.PtrBool(false), | ||
LayoutType: datadogV1.DASHBOARDLAYOUTTYPE_ORDERED, | ||
NotifyList: []string{}, | ||
ReflowType: datadogV1.DASHBOARDREFLOWTYPE_AUTO.Ptr(), | ||
RestrictedRoles: []string{}, | ||
TemplateVariablePresets: []datadogV1.DashboardTemplateVariablePreset{ | ||
{ | ||
Name: datadog.PtrString("my saved view"), | ||
TemplateVariables: []datadogV1.DashboardTemplateVariablePresetValue{ | ||
{ | ||
Name: datadog.PtrString("datacenter"), | ||
Values: []string{ | ||
"*", | ||
"my-host", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
TemplateVariables: []datadogV1.DashboardTemplateVariable{ | ||
{ | ||
AvailableValues: []string{ | ||
"my-host", | ||
"host1", | ||
"host2", | ||
}, | ||
Defaults: []string{ | ||
"my-host", | ||
}, | ||
Name: "host1", | ||
Prefix: *datadog.NewNullableString(datadog.PtrString("host")), | ||
}, | ||
}, | ||
Title: "", | ||
Widgets: []datadogV1.Widget{ | ||
{ | ||
Definition: datadogV1.WidgetDefinition{ | ||
HostMapWidgetDefinition: &datadogV1.HostMapWidgetDefinition{ | ||
Requests: datadogV1.HostMapWidgetDefinitionRequests{ | ||
Fill: &datadogV1.HostMapRequest{ | ||
Q: datadog.PtrString("avg:system.cpu.user{*}"), | ||
}, | ||
}, | ||
Type: datadogV1.HOSTMAPWIDGETDEFINITIONTYPE_HOSTMAP, | ||
}}, | ||
}, | ||
}, | ||
} | ||
ctx := datadog.NewDefaultContext(context.Background()) | ||
configuration := datadog.NewConfiguration() | ||
apiClient := datadog.NewAPIClient(configuration) | ||
api := datadogV1.NewDashboardsApi(apiClient) | ||
resp, r, err := api.CreateDashboard(ctx, body) | ||
|
||
if err != nil { | ||
fmt.Fprintf(os.Stderr, "Error when calling `DashboardsApi.CreateDashboard`: %v\n", err) | ||
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) | ||
} | ||
|
||
responseContent, _ := json.MarshalIndent(resp, "", " ") | ||
fmt.Fprintf(os.Stdout, "Response from `DashboardsApi.CreateDashboard`:\n%s\n", responseContent) | ||
} |
Oops, something went wrong.