Skip to content
This repository was archived by the owner on Oct 2, 2023. It is now read-only.

Commit da7e3b9

Browse files
feat!: Removing TimeSeriesQueryLanguageCondition as an alert condition type (#161)
The condition type is unsupported and unused. It was originally added for the Monitoring Query Language Alpha feature. This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/ceea7185-8991-4321-ac64-03d9792fe72a/targets PiperOrigin-RevId: 310060413 Source-Link: googleapis/googleapis@a3a0bf0 BREAKING_CHANGE: TimeSeriesQueryLanguageCondition has been removed.
1 parent ce235c0 commit da7e3b9

File tree

51 files changed

+4994
-4337
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+4994
-4337
lines changed

CONTRIBUTING.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,16 @@ mvn -Penable-samples clean verify
9999
```
100100

101101
2. [Activate](#profile-activation) the profile.
102-
3. Define your samples in a normal Maven project in the `samples/` directory
102+
3. Define your samples in a normal Maven project in the `samples/` directory.
103+
104+
### Code Formatting
105+
106+
Code in this repo is formatted with
107+
[google-java-format](https://github.com/google/google-java-format).
108+
To run formatting on your project, you can run:
109+
```
110+
mvn com.coveo:fmt-maven-plugin:format
111+
```
103112

104113
### Profile Activation
105114

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
3+
<differences>
4+
<!-- TODO: remove after 2.0.0 is released -->
5+
<difference>
6+
<differenceType>7005</differenceType>
7+
<className>com/google/cloud/monitoring/v3/AlertPolicyServiceClient</className>
8+
<method>* *AlertPolic*(com.google.monitoring.v3.ProjectName*)</method>
9+
<to>* *AlertPolic*(com.google.api.resourcenames.ResourceName*)</to>
10+
</difference>
11+
<difference>
12+
<differenceType>7005</differenceType>
13+
<className>com/google/cloud/monitoring/v3/GroupServiceClient</className>
14+
<method>* *Group*(com.google.monitoring.v3.ProjectName*)</method>
15+
<to>* *Group*(com.google.api.resourcenames.ResourceName*)</to>
16+
</difference>
17+
<difference>
18+
<differenceType>7005</differenceType>
19+
<className>com/google/cloud/monitoring/v3/MetricServiceClient</className>
20+
<method>* *(com.google.monitoring.v3.ProjectName*)</method>
21+
<to>* *(com.google.api.resourcenames.ResourceName*)</to>
22+
</difference>
23+
<difference>
24+
<differenceType>7005</differenceType>
25+
<className>com/google/cloud/monitoring/v3/NotificationChannelServiceClient</className>
26+
<method>* *NotificationChannel*(com.google.monitoring.v3.ProjectName*)</method>
27+
<to>* *NotificationChannel*(com.google.api.resourcenames.ResourceName*)</to>
28+
</difference>
29+
<difference>
30+
<differenceType>7005</differenceType>
31+
<className>com/google/cloud/monitoring/v3/ServiceMonitoringServiceClient</className>
32+
<method>* *Service*(com.google.monitoring.v3.ProjectName*)</method>
33+
<to>* *Service*(com.google.api.resourcenames.ResourceName*)</to>
34+
</difference>
35+
</differences>

0 commit comments

Comments
 (0)