Skip to content

Commit 34df7fb

Browse files
1 parent 0e6afaf commit 34df7fb

File tree

5 files changed

+33
-15
lines changed

5 files changed

+33
-15
lines changed

clients/google-api-services-monitoring/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-monitoring</artifactId>
25-
<version>v1-rev20260302-2.0.0</version>
25+
<version>v1-rev20260402-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260302-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260402-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/DataSet.java

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,12 @@ public final class DataSet extends com.google.api.client.json.GenericJson {
6666

6767
/**
6868
* Optional. The lower bound on data point frequency for this data set, implemented by specifying
69-
* the minimum alignment period to use in a time series query For example, if the data is
69+
* the minimum alignment period to use in a time series query. For example, if the data is
7070
* published once every 10 minutes, the min_alignment_period should be at least 10 minutes. It
71-
* would not make sense to fetch and align data at one minute intervals.
71+
* would not make sense to fetch and align data at one minute intervals.For PromQL queries, this
72+
* field is used to set the minimum interval for the query step, controlling data granularity.
73+
* Larger values can improve performance on long time ranges. See Querying Basics and Range
74+
* Queries for more details on the PromQL step.
7275
* The value may be {@code null}.
7376
*/
7477
@com.google.api.client.util.Key
@@ -180,9 +183,12 @@ public DataSet setMeasures(java.util.List<Measure> measures) {
180183

181184
/**
182185
* Optional. The lower bound on data point frequency for this data set, implemented by specifying
183-
* the minimum alignment period to use in a time series query For example, if the data is
186+
* the minimum alignment period to use in a time series query. For example, if the data is
184187
* published once every 10 minutes, the min_alignment_period should be at least 10 minutes. It
185-
* would not make sense to fetch and align data at one minute intervals.
188+
* would not make sense to fetch and align data at one minute intervals.For PromQL queries, this
189+
* field is used to set the minimum interval for the query step, controlling data granularity.
190+
* Larger values can improve performance on long time ranges. See Querying Basics and Range
191+
* Queries for more details on the PromQL step.
186192
* @return value or {@code null} for none
187193
*/
188194
public String getMinAlignmentPeriod() {
@@ -191,9 +197,12 @@ public String getMinAlignmentPeriod() {
191197

192198
/**
193199
* Optional. The lower bound on data point frequency for this data set, implemented by specifying
194-
* the minimum alignment period to use in a time series query For example, if the data is
200+
* the minimum alignment period to use in a time series query. For example, if the data is
195201
* published once every 10 minutes, the min_alignment_period should be at least 10 minutes. It
196-
* would not make sense to fetch and align data at one minute intervals.
202+
* would not make sense to fetch and align data at one minute intervals.For PromQL queries, this
203+
* field is used to set the minimum interval for the query step, controlling data granularity.
204+
* Larger values can improve performance on long time ranges. See Querying Basics and Range
205+
* Queries for more details on the PromQL step.
197206
* @param minAlignmentPeriod minAlignmentPeriod or {@code null} for none
198207
*/
199208
public DataSet setMinAlignmentPeriod(String minAlignmentPeriod) {

clients/google-api-services-monitoring/v1/2.0.0/com/google/api/services/monitoring/v1/model/SparkChartView.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ public final class SparkChartView extends com.google.api.client.json.GenericJson
3535
* The lower bound on data point frequency in the chart implemented by specifying the minimum
3636
* alignment period to use in a time series query. For example, if the data is published once
3737
* every 10 minutes it would not make sense to fetch and align data at one minute intervals. This
38-
* field is optional and exists only as a hint.
38+
* field is optional and exists only as a hint.For PromQL queries, this field is used to set the
39+
* minimum interval for the query step, controlling data granularity. Larger values can improve
40+
* performance on long time ranges. See Querying Basics and Range Queries for more details on the
41+
* PromQL step.
3942
* The value may be {@code null}.
4043
*/
4144
@com.google.api.client.util.Key
@@ -52,7 +55,10 @@ public final class SparkChartView extends com.google.api.client.json.GenericJson
5255
* The lower bound on data point frequency in the chart implemented by specifying the minimum
5356
* alignment period to use in a time series query. For example, if the data is published once
5457
* every 10 minutes it would not make sense to fetch and align data at one minute intervals. This
55-
* field is optional and exists only as a hint.
58+
* field is optional and exists only as a hint.For PromQL queries, this field is used to set the
59+
* minimum interval for the query step, controlling data granularity. Larger values can improve
60+
* performance on long time ranges. See Querying Basics and Range Queries for more details on the
61+
* PromQL step.
5662
* @return value or {@code null} for none
5763
*/
5864
public String getMinAlignmentPeriod() {
@@ -63,7 +69,10 @@ public String getMinAlignmentPeriod() {
6369
* The lower bound on data point frequency in the chart implemented by specifying the minimum
6470
* alignment period to use in a time series query. For example, if the data is published once
6571
* every 10 minutes it would not make sense to fetch and align data at one minute intervals. This
66-
* field is optional and exists only as a hint.
72+
* field is optional and exists only as a hint.For PromQL queries, this field is used to set the
73+
* minimum interval for the query step, controlling data granularity. Larger values can improve
74+
* performance on long time ranges. See Querying Basics and Range Queries for more details on the
75+
* PromQL step.
6776
* @param minAlignmentPeriod minAlignmentPeriod or {@code null} for none
6877
*/
6978
public SparkChartView setMinAlignmentPeriod(String minAlignmentPeriod) {

clients/google-api-services-monitoring/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-monitoring</artifactId>
11-
<version>v1-rev20260302-2.0.0</version>
12-
<name>Cloud Monitoring API v1-rev20260302-2.0.0</name>
11+
<version>v1-rev20260402-2.0.0</version>
12+
<name>Cloud Monitoring API v1-rev20260402-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-monitoring/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-monitoring</artifactId>
25-
<version>v1-rev20260302-2.0.0</version>
25+
<version>v1-rev20260402-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260302-2.0.0'
38+
implementation 'com.google.apis:google-api-services-monitoring:v1-rev20260402-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)