Skip to content

Commit 1673730

Browse files
1 parent 8caefbf commit 1673730

16 files changed

+4477
-2694
lines changed

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

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

Lines changed: 3821 additions & 2679 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.dataproc.model;
18+
19+
/**
20+
* Details of a native build info for a Spark Application
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 Cloud Dataproc 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 AccessSessionSparkApplicationNativeBuildInfoResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Native SQL Execution Data
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private NativeBuildInfoUiData executionData;
38+
39+
/**
40+
* Native SQL Execution Data
41+
* @return value or {@code null} for none
42+
*/
43+
public NativeBuildInfoUiData getExecutionData() {
44+
return executionData;
45+
}
46+
47+
/**
48+
* Native SQL Execution Data
49+
* @param executionData executionData or {@code null} for none
50+
*/
51+
public AccessSessionSparkApplicationNativeBuildInfoResponse setExecutionData(NativeBuildInfoUiData executionData) {
52+
this.executionData = executionData;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSessionSparkApplicationNativeBuildInfoResponse set(String fieldName, Object value) {
58+
return (AccessSessionSparkApplicationNativeBuildInfoResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSessionSparkApplicationNativeBuildInfoResponse clone() {
63+
return (AccessSessionSparkApplicationNativeBuildInfoResponse) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.dataproc.model;
18+
19+
/**
20+
* Details of a native query for a Spark Application
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 Cloud Dataproc 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 AccessSessionSparkApplicationNativeSqlQueryResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Native SQL Execution Data
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private NativeSqlExecutionUiData executionData;
38+
39+
/**
40+
* Native SQL Execution Data
41+
* @return value or {@code null} for none
42+
*/
43+
public NativeSqlExecutionUiData getExecutionData() {
44+
return executionData;
45+
}
46+
47+
/**
48+
* Native SQL Execution Data
49+
* @param executionData executionData or {@code null} for none
50+
*/
51+
public AccessSessionSparkApplicationNativeSqlQueryResponse setExecutionData(NativeSqlExecutionUiData executionData) {
52+
this.executionData = executionData;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSessionSparkApplicationNativeSqlQueryResponse set(String fieldName, Object value) {
58+
return (AccessSessionSparkApplicationNativeSqlQueryResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSessionSparkApplicationNativeSqlQueryResponse clone() {
63+
return (AccessSessionSparkApplicationNativeSqlQueryResponse) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.dataproc.model;
18+
19+
/**
20+
* Details of Native Build Info for a Spark Application
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 Cloud Dataproc 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 AccessSparkApplicationNativeBuildInfoResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Native Build Info Data
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private NativeBuildInfoUiData buildInfo;
38+
39+
/**
40+
* Native Build Info Data
41+
* @return value or {@code null} for none
42+
*/
43+
public NativeBuildInfoUiData getBuildInfo() {
44+
return buildInfo;
45+
}
46+
47+
/**
48+
* Native Build Info Data
49+
* @param buildInfo buildInfo or {@code null} for none
50+
*/
51+
public AccessSparkApplicationNativeBuildInfoResponse setBuildInfo(NativeBuildInfoUiData buildInfo) {
52+
this.buildInfo = buildInfo;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSparkApplicationNativeBuildInfoResponse set(String fieldName, Object value) {
58+
return (AccessSparkApplicationNativeBuildInfoResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSparkApplicationNativeBuildInfoResponse clone() {
63+
return (AccessSparkApplicationNativeBuildInfoResponse) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.dataproc.model;
18+
19+
/**
20+
* Details of a query for a Spark Application
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 Cloud Dataproc 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 AccessSparkApplicationNativeSqlQueryResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Native SQL Execution Data
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private NativeSqlExecutionUiData executionData;
38+
39+
/**
40+
* Native SQL Execution Data
41+
* @return value or {@code null} for none
42+
*/
43+
public NativeSqlExecutionUiData getExecutionData() {
44+
return executionData;
45+
}
46+
47+
/**
48+
* Native SQL Execution Data
49+
* @param executionData executionData or {@code null} for none
50+
*/
51+
public AccessSparkApplicationNativeSqlQueryResponse setExecutionData(NativeSqlExecutionUiData executionData) {
52+
this.executionData = executionData;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSparkApplicationNativeSqlQueryResponse set(String fieldName, Object value) {
58+
return (AccessSparkApplicationNativeSqlQueryResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSparkApplicationNativeSqlQueryResponse clone() {
63+
return (AccessSparkApplicationNativeSqlQueryResponse) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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.dataproc.model;
18+
19+
/**
20+
* Authentication configuration for a workload is used to set the default identity for the workload
21+
* execution. The config specifies the type of identity (service account or user) that will be used
22+
* by workloads to access resources on the project(s).
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Cloud Dataproc API. For a detailed explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class AuthenticationConfig extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Optional. Authentication type for the user workload running in containers.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String userWorkloadAuthenticationType;
40+
41+
/**
42+
* Optional. Authentication type for the user workload running in containers.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getUserWorkloadAuthenticationType() {
46+
return userWorkloadAuthenticationType;
47+
}
48+
49+
/**
50+
* Optional. Authentication type for the user workload running in containers.
51+
* @param userWorkloadAuthenticationType userWorkloadAuthenticationType or {@code null} for none
52+
*/
53+
public AuthenticationConfig setUserWorkloadAuthenticationType(java.lang.String userWorkloadAuthenticationType) {
54+
this.userWorkloadAuthenticationType = userWorkloadAuthenticationType;
55+
return this;
56+
}
57+
58+
@Override
59+
public AuthenticationConfig set(String fieldName, Object value) {
60+
return (AuthenticationConfig) super.set(fieldName, value);
61+
}
62+
63+
@Override
64+
public AuthenticationConfig clone() {
65+
return (AuthenticationConfig) super.clone();
66+
}
67+
68+
}

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ExecutionConfig extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Authentication configuration used to set the default identity for the workload
34+
* execution. The config specifies the type of identity (service account or user) that will be
35+
* used by workloads to access resources on the project(s).
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private AuthenticationConfig authenticationConfig;
40+
3241
/**
3342
* Optional. Applies to sessions only. The duration to keep the session alive while it's idling.
3443
* Exceeding this threshold causes the session to terminate. This field cannot be set on a batch
@@ -105,6 +114,27 @@ public final class ExecutionConfig extends com.google.api.client.json.GenericJso
105114
@com.google.api.client.util.Key
106115
private String ttl;
107116

117+
/**
118+
* Optional. Authentication configuration used to set the default identity for the workload
119+
* execution. The config specifies the type of identity (service account or user) that will be
120+
* used by workloads to access resources on the project(s).
121+
* @return value or {@code null} for none
122+
*/
123+
public AuthenticationConfig getAuthenticationConfig() {
124+
return authenticationConfig;
125+
}
126+
127+
/**
128+
* Optional. Authentication configuration used to set the default identity for the workload
129+
* execution. The config specifies the type of identity (service account or user) that will be
130+
* used by workloads to access resources on the project(s).
131+
* @param authenticationConfig authenticationConfig or {@code null} for none
132+
*/
133+
public ExecutionConfig setAuthenticationConfig(AuthenticationConfig authenticationConfig) {
134+
this.authenticationConfig = authenticationConfig;
135+
return this;
136+
}
137+
108138
/**
109139
* Optional. Applies to sessions only. The duration to keep the session alive while it's idling.
110140
* Exceeding this threshold causes the session to terminate. This field cannot be set on a batch

0 commit comments

Comments
 (0)