Skip to content

Commit deb6719

Browse files
1 parent 735aedf commit deb6719

File tree

5 files changed

+120
-6
lines changed

5 files changed

+120
-6
lines changed

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
25-
<version>v1b3-rev20241028-2.0.0</version>
25+
<version>v1b3-rev20241209-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-dataflow:v1b3-rev20241028-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20241209-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.dataflow.model;
18+
19+
/**
20+
* The gauge value of a metric.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Dataflow API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class DataflowGaugeValue extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The timestamp when the gauge was recorded.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String measuredTime;
38+
39+
/**
40+
* The value of the gauge.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
44+
private java.lang.Long value;
45+
46+
/**
47+
* The timestamp when the gauge was recorded.
48+
* @return value or {@code null} for none
49+
*/
50+
public String getMeasuredTime() {
51+
return measuredTime;
52+
}
53+
54+
/**
55+
* The timestamp when the gauge was recorded.
56+
* @param measuredTime measuredTime or {@code null} for none
57+
*/
58+
public DataflowGaugeValue setMeasuredTime(String measuredTime) {
59+
this.measuredTime = measuredTime;
60+
return this;
61+
}
62+
63+
/**
64+
* The value of the gauge.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.Long getValue() {
68+
return value;
69+
}
70+
71+
/**
72+
* The value of the gauge.
73+
* @param value value or {@code null} for none
74+
*/
75+
public DataflowGaugeValue setValue(java.lang.Long value) {
76+
this.value = value;
77+
return this;
78+
}
79+
80+
@Override
81+
public DataflowGaugeValue set(String fieldName, Object value) {
82+
return (DataflowGaugeValue) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public DataflowGaugeValue clone() {
87+
return (DataflowGaugeValue) super.clone();
88+
}
89+
90+
}

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/MetricValue.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class MetricValue extends com.google.api.client.json.GenericJson {
4343
@com.google.api.client.util.Key
4444
private java.util.Map<String, java.lang.String> metricLabels;
4545

46+
/**
47+
* Non-cumulative int64 value of this metric.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private DataflowGaugeValue valueGauge64;
52+
4653
/**
4754
* Histogram value of this metric.
4855
* The value may be {@code null}.
@@ -91,6 +98,23 @@ public MetricValue setMetricLabels(java.util.Map<String, java.lang.String> metri
9198
return this;
9299
}
93100

101+
/**
102+
* Non-cumulative int64 value of this metric.
103+
* @return value or {@code null} for none
104+
*/
105+
public DataflowGaugeValue getValueGauge64() {
106+
return valueGauge64;
107+
}
108+
109+
/**
110+
* Non-cumulative int64 value of this metric.
111+
* @param valueGauge64 valueGauge64 or {@code null} for none
112+
*/
113+
public MetricValue setValueGauge64(DataflowGaugeValue valueGauge64) {
114+
this.valueGauge64 = valueGauge64;
115+
return this;
116+
}
117+
94118
/**
95119
* Histogram value of this metric.
96120
* @return value or {@code null} for none

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
11-
<version>v1b3-rev20241028-2.0.0</version>
12-
<name>Dataflow API v1b3-rev20241028-2.0.0</name>
11+
<version>v1b3-rev20241209-2.0.0</version>
12+
<name>Dataflow API v1b3-rev20241209-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
25-
<version>v1b3-rev20241028-2.0.0</version>
25+
<version>v1b3-rev20241209-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-dataflow:v1b3-rev20241028-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20241209-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)