Skip to content

Commit 24ef5a5

Browse files
1 parent bbb9c07 commit 24ef5a5

5 files changed

Lines changed: 195 additions & 21 deletions

File tree

clients/google-api-services-dataproc/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-dataproc</artifactId>
25-
<version>v1-rev20260501-2.0.0</version>
25+
<version>v1-rev20260509-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-dataproc:v1-rev20260501-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataproc:v1-rev20260509-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataproc/v1/2.0.0/com/google/api/services/dataproc/model/UsageMetrics.java

Lines changed: 96 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,46 @@
3030
public final class UsageMetrics extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. DEPRECATED Accelerator type being used, if any
33+
* Optional. Accelerator type being used, if any Deprecated: This field is only used in runtime
34+
* versions below 3.0.
3435
* The value may be {@code null}.
3536
*/
3637
@com.google.api.client.util.Key
3738
private java.lang.String acceleratorType;
3839

3940
/**
40-
* Optional. DEPRECATED Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
41-
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
41+
* Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing
42+
* (https://cloud.google.com/dataproc-serverless/pricing)). Deprecated: This field is only used in
43+
* runtime versions below 3.0.
4244
* The value may be {@code null}.
4345
*/
4446
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
4547
private java.lang.Long milliAcceleratorSeconds;
4648

49+
/**
50+
* Optional. A100-40 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
51+
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
55+
private java.lang.Long milliAcceleratorSecondsA10040;
56+
57+
/**
58+
* Optional. A100-80 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
59+
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
63+
private java.lang.Long milliAcceleratorSecondsA10080;
64+
65+
/**
66+
* Optional. L4 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing
67+
* (https://cloud.google.com/dataproc-serverless/pricing)).
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
71+
private java.lang.Long milliAcceleratorSecondsL4;
72+
4773
/**
4874
* Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless
4975
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
@@ -68,15 +94,17 @@ public final class UsageMetrics extends com.google.api.client.json.GenericJson {
6894
private String updateTime;
6995

7096
/**
71-
* Optional. DEPRECATED Accelerator type being used, if any
97+
* Optional. Accelerator type being used, if any Deprecated: This field is only used in runtime
98+
* versions below 3.0.
7299
* @return value or {@code null} for none
73100
*/
74101
public java.lang.String getAcceleratorType() {
75102
return acceleratorType;
76103
}
77104

78105
/**
79-
* Optional. DEPRECATED Accelerator type being used, if any
106+
* Optional. Accelerator type being used, if any Deprecated: This field is only used in runtime
107+
* versions below 3.0.
80108
* @param acceleratorType acceleratorType or {@code null} for none
81109
*/
82110
public UsageMetrics setAcceleratorType(java.lang.String acceleratorType) {
@@ -85,24 +113,83 @@ public UsageMetrics setAcceleratorType(java.lang.String acceleratorType) {
85113
}
86114

87115
/**
88-
* Optional. DEPRECATED Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
89-
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
116+
* Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing
117+
* (https://cloud.google.com/dataproc-serverless/pricing)). Deprecated: This field is only used in
118+
* runtime versions below 3.0.
90119
* @return value or {@code null} for none
91120
*/
92121
public java.lang.Long getMilliAcceleratorSeconds() {
93122
return milliAcceleratorSeconds;
94123
}
95124

96125
/**
97-
* Optional. DEPRECATED Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
98-
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
126+
* Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing
127+
* (https://cloud.google.com/dataproc-serverless/pricing)). Deprecated: This field is only used in
128+
* runtime versions below 3.0.
99129
* @param milliAcceleratorSeconds milliAcceleratorSeconds or {@code null} for none
100130
*/
101131
public UsageMetrics setMilliAcceleratorSeconds(java.lang.Long milliAcceleratorSeconds) {
102132
this.milliAcceleratorSeconds = milliAcceleratorSeconds;
103133
return this;
104134
}
105135

136+
/**
137+
* Optional. A100-40 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
138+
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
139+
* @return value or {@code null} for none
140+
*/
141+
public java.lang.Long getMilliAcceleratorSecondsA10040() {
142+
return milliAcceleratorSecondsA10040;
143+
}
144+
145+
/**
146+
* Optional. A100-40 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
147+
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
148+
* @param milliAcceleratorSecondsA10040 milliAcceleratorSecondsA10040 or {@code null} for none
149+
*/
150+
public UsageMetrics setMilliAcceleratorSecondsA10040(java.lang.Long milliAcceleratorSecondsA10040) {
151+
this.milliAcceleratorSecondsA10040 = milliAcceleratorSecondsA10040;
152+
return this;
153+
}
154+
155+
/**
156+
* Optional. A100-80 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
157+
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
158+
* @return value or {@code null} for none
159+
*/
160+
public java.lang.Long getMilliAcceleratorSecondsA10080() {
161+
return milliAcceleratorSecondsA10080;
162+
}
163+
164+
/**
165+
* Optional. A100-80 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless
166+
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).
167+
* @param milliAcceleratorSecondsA10080 milliAcceleratorSecondsA10080 or {@code null} for none
168+
*/
169+
public UsageMetrics setMilliAcceleratorSecondsA10080(java.lang.Long milliAcceleratorSecondsA10080) {
170+
this.milliAcceleratorSecondsA10080 = milliAcceleratorSecondsA10080;
171+
return this;
172+
}
173+
174+
/**
175+
* Optional. L4 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing
176+
* (https://cloud.google.com/dataproc-serverless/pricing)).
177+
* @return value or {@code null} for none
178+
*/
179+
public java.lang.Long getMilliAcceleratorSecondsL4() {
180+
return milliAcceleratorSecondsL4;
181+
}
182+
183+
/**
184+
* Optional. L4 accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing
185+
* (https://cloud.google.com/dataproc-serverless/pricing)).
186+
* @param milliAcceleratorSecondsL4 milliAcceleratorSecondsL4 or {@code null} for none
187+
*/
188+
public UsageMetrics setMilliAcceleratorSecondsL4(java.lang.Long milliAcceleratorSecondsL4) {
189+
this.milliAcceleratorSecondsL4 = milliAcceleratorSecondsL4;
190+
return this;
191+
}
192+
106193
/**
107194
* Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless
108195
* pricing (https://cloud.google.com/dataproc-serverless/pricing)).

clients/google-api-services-dataproc/v1/2.0.0/com/google/api/services/dataproc/model/UsageSnapshot.java

Lines changed: 93 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,46 @@
3030
public final class UsageSnapshot extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. Accelerator type being used, if any
33+
* Optional. Accelerator type being used, if any Deprecated: This field is only used in runtime
34+
* versions below 3.0.
3435
* The value may be {@code null}.
3536
*/
3637
@com.google.api.client.util.Key
3738
private java.lang.String acceleratorType;
3839

3940
/**
4041
* Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing
41-
* (https://cloud.google.com/dataproc-serverless/pricing))
42+
* (https://cloud.google.com/dataproc-serverless/pricing)) Deprecated: This field is only used in
43+
* runtime versions below 3.0.
4244
* The value may be {@code null}.
4345
*/
4446
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
4547
private java.lang.Long milliAccelerator;
4648

49+
/**
50+
* Optional. Milli (one-thousandth) accelerator for A100-40 accelerators. (see Dataproc Serverless
51+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
55+
private java.lang.Long milliAcceleratorA10040;
56+
57+
/**
58+
* Optional. Milli (one-thousandth) accelerator for A100-80 accelerators. (see Dataproc Serverless
59+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
63+
private java.lang.Long milliAcceleratorA10080;
64+
65+
/**
66+
* Optional. Milli (one-thousandth) accelerator for L4 accelerators. (see Dataproc Serverless
67+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
71+
private java.lang.Long milliAcceleratorL4;
72+
4773
/**
4874
* Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing
4975
* (https://cloud.google.com/dataproc-serverless/pricing)).
@@ -84,15 +110,17 @@ public final class UsageSnapshot extends com.google.api.client.json.GenericJson
84110
private String snapshotTime;
85111

86112
/**
87-
* Optional. Accelerator type being used, if any
113+
* Optional. Accelerator type being used, if any Deprecated: This field is only used in runtime
114+
* versions below 3.0.
88115
* @return value or {@code null} for none
89116
*/
90117
public java.lang.String getAcceleratorType() {
91118
return acceleratorType;
92119
}
93120

94121
/**
95-
* Optional. Accelerator type being used, if any
122+
* Optional. Accelerator type being used, if any Deprecated: This field is only used in runtime
123+
* versions below 3.0.
96124
* @param acceleratorType acceleratorType or {@code null} for none
97125
*/
98126
public UsageSnapshot setAcceleratorType(java.lang.String acceleratorType) {
@@ -102,7 +130,8 @@ public UsageSnapshot setAcceleratorType(java.lang.String acceleratorType) {
102130

103131
/**
104132
* Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing
105-
* (https://cloud.google.com/dataproc-serverless/pricing))
133+
* (https://cloud.google.com/dataproc-serverless/pricing)) Deprecated: This field is only used in
134+
* runtime versions below 3.0.
106135
* @return value or {@code null} for none
107136
*/
108137
public java.lang.Long getMilliAccelerator() {
@@ -111,14 +140,72 @@ public java.lang.Long getMilliAccelerator() {
111140

112141
/**
113142
* Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing
114-
* (https://cloud.google.com/dataproc-serverless/pricing))
143+
* (https://cloud.google.com/dataproc-serverless/pricing)) Deprecated: This field is only used in
144+
* runtime versions below 3.0.
115145
* @param milliAccelerator milliAccelerator or {@code null} for none
116146
*/
117147
public UsageSnapshot setMilliAccelerator(java.lang.Long milliAccelerator) {
118148
this.milliAccelerator = milliAccelerator;
119149
return this;
120150
}
121151

152+
/**
153+
* Optional. Milli (one-thousandth) accelerator for A100-40 accelerators. (see Dataproc Serverless
154+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
155+
* @return value or {@code null} for none
156+
*/
157+
public java.lang.Long getMilliAcceleratorA10040() {
158+
return milliAcceleratorA10040;
159+
}
160+
161+
/**
162+
* Optional. Milli (one-thousandth) accelerator for A100-40 accelerators. (see Dataproc Serverless
163+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
164+
* @param milliAcceleratorA10040 milliAcceleratorA10040 or {@code null} for none
165+
*/
166+
public UsageSnapshot setMilliAcceleratorA10040(java.lang.Long milliAcceleratorA10040) {
167+
this.milliAcceleratorA10040 = milliAcceleratorA10040;
168+
return this;
169+
}
170+
171+
/**
172+
* Optional. Milli (one-thousandth) accelerator for A100-80 accelerators. (see Dataproc Serverless
173+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
174+
* @return value or {@code null} for none
175+
*/
176+
public java.lang.Long getMilliAcceleratorA10080() {
177+
return milliAcceleratorA10080;
178+
}
179+
180+
/**
181+
* Optional. Milli (one-thousandth) accelerator for A100-80 accelerators. (see Dataproc Serverless
182+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
183+
* @param milliAcceleratorA10080 milliAcceleratorA10080 or {@code null} for none
184+
*/
185+
public UsageSnapshot setMilliAcceleratorA10080(java.lang.Long milliAcceleratorA10080) {
186+
this.milliAcceleratorA10080 = milliAcceleratorA10080;
187+
return this;
188+
}
189+
190+
/**
191+
* Optional. Milli (one-thousandth) accelerator for L4 accelerators. (see Dataproc Serverless
192+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
193+
* @return value or {@code null} for none
194+
*/
195+
public java.lang.Long getMilliAcceleratorL4() {
196+
return milliAcceleratorL4;
197+
}
198+
199+
/**
200+
* Optional. Milli (one-thousandth) accelerator for L4 accelerators. (see Dataproc Serverless
201+
* pricing (https://cloud.google.com/dataproc-serverless/pricing))
202+
* @param milliAcceleratorL4 milliAcceleratorL4 or {@code null} for none
203+
*/
204+
public UsageSnapshot setMilliAcceleratorL4(java.lang.Long milliAcceleratorL4) {
205+
this.milliAcceleratorL4 = milliAcceleratorL4;
206+
return this;
207+
}
208+
122209
/**
123210
* Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing
124211
* (https://cloud.google.com/dataproc-serverless/pricing)).

clients/google-api-services-dataproc/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-dataproc</artifactId>
11-
<version>v1-rev20260501-2.0.0</version>
12-
<name>Cloud Dataproc API v1-rev20260501-2.0.0</name>
11+
<version>v1-rev20260509-2.0.0</version>
12+
<name>Cloud Dataproc API v1-rev20260509-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dataproc/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-dataproc</artifactId>
25-
<version>v1-rev20260501-2.0.0</version>
25+
<version>v1-rev20260509-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-dataproc:v1-rev20260501-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataproc:v1-rev20260509-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)