Skip to content

Commit

Permalink
feat: [monitoring-dashboards] Add support for pie charts, incident li…
Browse files Browse the repository at this point in the history
…sts, dropdown groups, error reporting panels, section headers, and styling options on text widgets (#10355)

* feat: Add support for pie charts, incident lists, dropdown groups, error reporting panels, section headers, and styling options on text widgets
docs: updated some comments

PiperOrigin-RevId: 605410874

Source-Link: googleapis/googleapis@8aa8817

Source-Link: googleapis/googleapis-gen@6782599
Copy-Tag: eyJwIjoiamF2YS1tb25pdG9yaW5nLWRhc2hib2FyZHMvLk93bEJvdC55YW1sIiwiaCI6IjY3ODI1OTlmZjM4NGZkMTg1MWI5YWUyNzA1MzZkMTMwZWNiNWVlN2EifQ==

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Feb 9, 2024
1 parent 3bf2de6 commit bc9cebd
Show file tree
Hide file tree
Showing 82 changed files with 16,212 additions and 504 deletions.

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

0 comments on commit bc9cebd

Please sign in to comment.