Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
feat: Sync public protos with latests public api state. This adds sup…
Browse files Browse the repository at this point in the history
…port for collapsible groups, filters, labels, drilldowns, logs panels and tables (#586)

- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 440139643

Source-Link: googleapis/googleapis@2bff0f3

Source-Link: googleapis/googleapis-gen@8c92aa7
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOGM5MmFhNzc0NjZhMWZlNTAxNmUyNWQ4MDZkZDRlYjQ1YjYyZTVhMiJ9
  • Loading branch information
gcf-owl-bot[bot] committed Apr 11, 2022
1 parent 866d2a1 commit c90af2d
Show file tree
Hide file tree
Showing 46 changed files with 10,936 additions and 103 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.google.common.collect.Lists;
import com.google.monitoring.dashboard.v1.CreateDashboardRequest;
import com.google.monitoring.dashboard.v1.Dashboard;
import com.google.monitoring.dashboard.v1.DashboardFilter;
import com.google.monitoring.dashboard.v1.DashboardName;
import com.google.monitoring.dashboard.v1.DeleteDashboardRequest;
import com.google.monitoring.dashboard.v1.GetDashboardRequest;
Expand All @@ -39,7 +40,9 @@
import com.google.protobuf.Empty;
import io.grpc.StatusRuntimeException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.UUID;
import javax.annotation.Generated;
Expand Down Expand Up @@ -95,6 +98,8 @@ public void createDashboardTest() throws Exception {
.setName(DashboardName.of("[PROJECT]", "[DASHBOARD]").toString())
.setDisplayName("displayName1714148973")
.setEtag("etag3123477")
.addAllDashboardFilters(new ArrayList<DashboardFilter>())
.putAllLabels(new HashMap<String, String>())
.build();
mockDashboardsService.addResponse(expectedResponse);

Expand Down Expand Up @@ -203,6 +208,8 @@ public void getDashboardTest() throws Exception {
.setName(DashboardName.of("[PROJECT]", "[DASHBOARD]").toString())
.setDisplayName("displayName1714148973")
.setEtag("etag3123477")
.addAllDashboardFilters(new ArrayList<DashboardFilter>())
.putAllLabels(new HashMap<String, String>())
.build();
mockDashboardsService.addResponse(expectedResponse);

Expand Down Expand Up @@ -289,6 +296,8 @@ public void updateDashboardTest() throws Exception {
.setName(DashboardName.of("[PROJECT]", "[DASHBOARD]").toString())
.setDisplayName("displayName1714148973")
.setEtag("etag3123477")
.addAllDashboardFilters(new ArrayList<DashboardFilter>())
.putAllLabels(new HashMap<String, String>())
.build();
mockDashboardsService.addResponse(expectedResponse);

Expand Down
Loading

0 comments on commit c90af2d

Please sign in to comment.