Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [monitoring-dashboards] Add support for pie charts, incident lists, dropdown groups, error reporting panels, section headers, and styling options on text widgets #10355

Merged
merged 2 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"libraryClient": "DashboardsServiceClient",
"rpcs": {
"CreateDashboard": {
"methods": ["createDashboard", "createDashboardCallable"]
"methods": ["createDashboard", "createDashboard", "createDashboard", "createDashboardCallable"]
},
"DeleteDashboard": {
"methods": ["deleteDashboard", "deleteDashboardCallable"]
"methods": ["deleteDashboard", "deleteDashboard", "deleteDashboard", "deleteDashboardCallable"]
},
"GetDashboard": {
"methods": ["getDashboard", "getDashboardCallable"]
"methods": ["getDashboard", "getDashboard", "getDashboard", "getDashboardCallable"]
},
"ListDashboards": {
"methods": ["listDashboards", "listDashboardsPagedCallable", "listDashboardsCallable"]
"methods": ["listDashboards", "listDashboards", "listDashboards", "listDashboardsPagedCallable", "listDashboardsCallable"]
},
"UpdateDashboard": {
"methods": ["updateDashboard", "updateDashboardCallable"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,9 @@
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (DashboardsServiceClient dashboardsServiceClient = DashboardsServiceClient.create()) {
* CreateDashboardRequest request =
* CreateDashboardRequest.newBuilder()
* .setParent("parent-995424086")
* .setDashboard(Dashboard.newBuilder().build())
* .setValidateOnly(true)
* .build();
* Dashboard response = dashboardsServiceClient.createDashboard(request);
* ProjectName parent = ProjectName.of("[PROJECT]");
* Dashboard dashboard = Dashboard.newBuilder().build();
* Dashboard response = dashboardsServiceClient.createDashboard(parent, dashboard);
* }
* }</pre>
*/
Expand Down
Loading
Loading