Skip to content

Commit 05035a3

Browse files
1 parent a7b9e0c commit 05035a3

File tree

119 files changed

+27918
-1880
lines changed

Some content is hidden

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

119 files changed

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

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

Lines changed: 10377 additions & 1865 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+
* Environment details of a Saprk 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 AccessSessionSparkApplicationEnvironmentInfoResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Details about the Environment that the application is running in.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private ApplicationEnvironmentInfo applicationEnvironmentInfo;
38+
39+
/**
40+
* Details about the Environment that the application is running in.
41+
* @return value or {@code null} for none
42+
*/
43+
public ApplicationEnvironmentInfo getApplicationEnvironmentInfo() {
44+
return applicationEnvironmentInfo;
45+
}
46+
47+
/**
48+
* Details about the Environment that the application is running in.
49+
* @param applicationEnvironmentInfo applicationEnvironmentInfo or {@code null} for none
50+
*/
51+
public AccessSessionSparkApplicationEnvironmentInfoResponse setApplicationEnvironmentInfo(ApplicationEnvironmentInfo applicationEnvironmentInfo) {
52+
this.applicationEnvironmentInfo = applicationEnvironmentInfo;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSessionSparkApplicationEnvironmentInfoResponse set(String fieldName, Object value) {
58+
return (AccessSessionSparkApplicationEnvironmentInfoResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSessionSparkApplicationEnvironmentInfoResponse clone() {
63+
return (AccessSessionSparkApplicationEnvironmentInfoResponse) 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 particular job associated with 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 AccessSessionSparkApplicationJobResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Data corresponding to a spark job.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private JobData jobData;
38+
39+
/**
40+
* Output only. Data corresponding to a spark job.
41+
* @return value or {@code null} for none
42+
*/
43+
public JobData getJobData() {
44+
return jobData;
45+
}
46+
47+
/**
48+
* Output only. Data corresponding to a spark job.
49+
* @param jobData jobData or {@code null} for none
50+
*/
51+
public AccessSessionSparkApplicationJobResponse setJobData(JobData jobData) {
52+
this.jobData = jobData;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSessionSparkApplicationJobResponse set(String fieldName, Object value) {
58+
return (AccessSessionSparkApplicationJobResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSessionSparkApplicationJobResponse clone() {
63+
return (AccessSessionSparkApplicationJobResponse) 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+
* A summary of 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 AccessSessionSparkApplicationResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. High level information corresponding to an application.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private ApplicationInfo application;
38+
39+
/**
40+
* Output only. High level information corresponding to an application.
41+
* @return value or {@code null} for none
42+
*/
43+
public ApplicationInfo getApplication() {
44+
return application;
45+
}
46+
47+
/**
48+
* Output only. High level information corresponding to an application.
49+
* @param application application or {@code null} for none
50+
*/
51+
public AccessSessionSparkApplicationResponse setApplication(ApplicationInfo application) {
52+
this.application = application;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSessionSparkApplicationResponse set(String fieldName, Object value) {
58+
return (AccessSessionSparkApplicationResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSessionSparkApplicationResponse clone() {
63+
return (AccessSessionSparkApplicationResponse) 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 AccessSessionSparkApplicationSqlQueryResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* SQL Execution Data
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private SqlExecutionUiData executionData;
38+
39+
/**
40+
* SQL Execution Data
41+
* @return value or {@code null} for none
42+
*/
43+
public SqlExecutionUiData getExecutionData() {
44+
return executionData;
45+
}
46+
47+
/**
48+
* SQL Execution Data
49+
* @param executionData executionData or {@code null} for none
50+
*/
51+
public AccessSessionSparkApplicationSqlQueryResponse setExecutionData(SqlExecutionUiData executionData) {
52+
this.executionData = executionData;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSessionSparkApplicationSqlQueryResponse set(String fieldName, Object value) {
58+
return (AccessSessionSparkApplicationSqlQueryResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSessionSparkApplicationSqlQueryResponse clone() {
63+
return (AccessSessionSparkApplicationSqlQueryResponse) 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+
* SparkPlanGraph for a Spark Application execution limited to maximum 10000 clusters.
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 AccessSessionSparkApplicationSqlSparkPlanGraphResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* SparkPlanGraph for a Spark Application execution.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private SparkPlanGraph sparkPlanGraph;
38+
39+
/**
40+
* SparkPlanGraph for a Spark Application execution.
41+
* @return value or {@code null} for none
42+
*/
43+
public SparkPlanGraph getSparkPlanGraph() {
44+
return sparkPlanGraph;
45+
}
46+
47+
/**
48+
* SparkPlanGraph for a Spark Application execution.
49+
* @param sparkPlanGraph sparkPlanGraph or {@code null} for none
50+
*/
51+
public AccessSessionSparkApplicationSqlSparkPlanGraphResponse setSparkPlanGraph(SparkPlanGraph sparkPlanGraph) {
52+
this.sparkPlanGraph = sparkPlanGraph;
53+
return this;
54+
}
55+
56+
@Override
57+
public AccessSessionSparkApplicationSqlSparkPlanGraphResponse set(String fieldName, Object value) {
58+
return (AccessSessionSparkApplicationSqlSparkPlanGraphResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AccessSessionSparkApplicationSqlSparkPlanGraphResponse clone() {
63+
return (AccessSessionSparkApplicationSqlSparkPlanGraphResponse) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)