Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-dataproc/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-dataproc</artifactId>
<version>v1-rev20260625-2.0.0</version>
<version>v1-rev20260715-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-dataproc:v1-rev20260625-2.0.0'
implementation 'com.google.apis:google-api-services-dataproc:v1-rev20260715-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.dataproc.model;

/**
* Details of a native build info for a Spark Application
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Dataproc API. For a detailed explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AccessSessionSparkApplicationNativeBuildInfoResponse extends com.google.api.client.json.GenericJson {

/**
* Native SQL Execution Data
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private NativeBuildInfoUiData executionData;

/**
* Native SQL Execution Data
* @return value or {@code null} for none
*/
public NativeBuildInfoUiData getExecutionData() {
return executionData;
}

/**
* Native SQL Execution Data
* @param executionData executionData or {@code null} for none
*/
public AccessSessionSparkApplicationNativeBuildInfoResponse setExecutionData(NativeBuildInfoUiData executionData) {
this.executionData = executionData;
return this;
}

@Override
public AccessSessionSparkApplicationNativeBuildInfoResponse set(String fieldName, Object value) {
return (AccessSessionSparkApplicationNativeBuildInfoResponse) super.set(fieldName, value);
}

@Override
public AccessSessionSparkApplicationNativeBuildInfoResponse clone() {
return (AccessSessionSparkApplicationNativeBuildInfoResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.dataproc.model;

/**
* Details of a native query for a Spark Application
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Dataproc API. For a detailed explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AccessSessionSparkApplicationNativeSqlQueryResponse extends com.google.api.client.json.GenericJson {

/**
* Native SQL Execution Data
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private NativeSqlExecutionUiData executionData;

/**
* Native SQL Execution Data
* @return value or {@code null} for none
*/
public NativeSqlExecutionUiData getExecutionData() {
return executionData;
}

/**
* Native SQL Execution Data
* @param executionData executionData or {@code null} for none
*/
public AccessSessionSparkApplicationNativeSqlQueryResponse setExecutionData(NativeSqlExecutionUiData executionData) {
this.executionData = executionData;
return this;
}

@Override
public AccessSessionSparkApplicationNativeSqlQueryResponse set(String fieldName, Object value) {
return (AccessSessionSparkApplicationNativeSqlQueryResponse) super.set(fieldName, value);
}

@Override
public AccessSessionSparkApplicationNativeSqlQueryResponse clone() {
return (AccessSessionSparkApplicationNativeSqlQueryResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.dataproc.model;

/**
* Details of Native Build Info for a Spark Application
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Dataproc API. For a detailed explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AccessSparkApplicationNativeBuildInfoResponse extends com.google.api.client.json.GenericJson {

/**
* Native Build Info Data
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private NativeBuildInfoUiData buildInfo;

/**
* Native Build Info Data
* @return value or {@code null} for none
*/
public NativeBuildInfoUiData getBuildInfo() {
return buildInfo;
}

/**
* Native Build Info Data
* @param buildInfo buildInfo or {@code null} for none
*/
public AccessSparkApplicationNativeBuildInfoResponse setBuildInfo(NativeBuildInfoUiData buildInfo) {
this.buildInfo = buildInfo;
return this;
}

@Override
public AccessSparkApplicationNativeBuildInfoResponse set(String fieldName, Object value) {
return (AccessSparkApplicationNativeBuildInfoResponse) super.set(fieldName, value);
}

@Override
public AccessSparkApplicationNativeBuildInfoResponse clone() {
return (AccessSparkApplicationNativeBuildInfoResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.dataproc.model;

/**
* Details of a query for a Spark Application
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Dataproc API. For a detailed explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AccessSparkApplicationNativeSqlQueryResponse extends com.google.api.client.json.GenericJson {

/**
* Native SQL Execution Data
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private NativeSqlExecutionUiData executionData;

/**
* Native SQL Execution Data
* @return value or {@code null} for none
*/
public NativeSqlExecutionUiData getExecutionData() {
return executionData;
}

/**
* Native SQL Execution Data
* @param executionData executionData or {@code null} for none
*/
public AccessSparkApplicationNativeSqlQueryResponse setExecutionData(NativeSqlExecutionUiData executionData) {
this.executionData = executionData;
return this;
}

@Override
public AccessSparkApplicationNativeSqlQueryResponse set(String fieldName, Object value) {
return (AccessSparkApplicationNativeSqlQueryResponse) super.set(fieldName, value);
}

@Override
public AccessSparkApplicationNativeSqlQueryResponse clone() {
return (AccessSparkApplicationNativeSqlQueryResponse) super.clone();
}

}
Loading
Loading