Skip to content
Merged
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-dataform/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-dataform</artifactId>
<version>v1-rev20260802-2.0.0</version>
<version>v1-rev20260906-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260802-2.0.0'
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260906-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
/*
* 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.dataform.v1.model;

/**
* Represents a BigQuery unit test.
*
* <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 Dataform 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 BigQueryUnitTest extends com.google.api.client.json.GenericJson {

/**
* A list of actions that this action depends on.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<Target> dependencyTargets;

/**
* Whether this action is disabled (i.e. should not be run).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean disabled;

/**
* The name of the unit test.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String displayName;

/**
* Expected output query to compare against the test query.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String expectedOutputQuery;

/**
* Arbitrary, user-defined tags on this action.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> tags;

/**
* Test query to execute.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String testQuery;

/**
* A list of actions that this action depends on.
* @return value or {@code null} for none
*/
public java.util.List<Target> getDependencyTargets() {
return dependencyTargets;
}

/**
* A list of actions that this action depends on.
* @param dependencyTargets dependencyTargets or {@code null} for none
*/
public BigQueryUnitTest setDependencyTargets(java.util.List<Target> dependencyTargets) {
this.dependencyTargets = dependencyTargets;
return this;
}

/**
* Whether this action is disabled (i.e. should not be run).
* @return value or {@code null} for none
*/
public java.lang.Boolean getDisabled() {
return disabled;
}

/**
* Whether this action is disabled (i.e. should not be run).
* @param disabled disabled or {@code null} for none
*/
public BigQueryUnitTest setDisabled(java.lang.Boolean disabled) {
this.disabled = disabled;
return this;
}

/**
* The name of the unit test.
* @return value or {@code null} for none
*/
public java.lang.String getDisplayName() {
return displayName;
}

/**
* The name of the unit test.
* @param displayName displayName or {@code null} for none
*/
public BigQueryUnitTest setDisplayName(java.lang.String displayName) {
this.displayName = displayName;
return this;
}

/**
* Expected output query to compare against the test query.
* @return value or {@code null} for none
*/
public java.lang.String getExpectedOutputQuery() {
return expectedOutputQuery;
}

/**
* Expected output query to compare against the test query.
* @param expectedOutputQuery expectedOutputQuery or {@code null} for none
*/
public BigQueryUnitTest setExpectedOutputQuery(java.lang.String expectedOutputQuery) {
this.expectedOutputQuery = expectedOutputQuery;
return this;
}

/**
* Arbitrary, user-defined tags on this action.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getTags() {
return tags;
}

/**
* Arbitrary, user-defined tags on this action.
* @param tags tags or {@code null} for none
*/
public BigQueryUnitTest setTags(java.util.List<java.lang.String> tags) {
this.tags = tags;
return this;
}

/**
* Test query to execute.
* @return value or {@code null} for none
*/
public java.lang.String getTestQuery() {
return testQuery;
}

/**
* Test query to execute.
* @param testQuery testQuery or {@code null} for none
*/
public BigQueryUnitTest setTestQuery(java.lang.String testQuery) {
this.testQuery = testQuery;
return this;
}

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

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

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
/*
* 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.dataform.v1.model;

/**
* Represents a workflow action that will run a BigQuery unit test.
*
* <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 Dataform 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 BigQueryUnitTestAction extends com.google.api.client.json.GenericJson {

/**
* Output only. Job ID for the actual results.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String actualResultsJobId;

/**
* Output only. SQL script for the actual results.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String actualResultsSqlScript;

/**
* Output only. Job ID for the expected results.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String expectedResultsJobId;

/**
* Output only. SQL script for the expected results.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String expectedResultsSqlScript;

/**
* Output only. Total bytes billed for this action. Combined total for actual and expected jobs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long totalBilledBytes;

/**
* Output only. Total bytes processed for this action. Combined total for actual and expected
* jobs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long totalProcessedBytes;

/**
* Output only. Job ID for the actual results.
* @return value or {@code null} for none
*/
public java.lang.String getActualResultsJobId() {
return actualResultsJobId;
}

/**
* Output only. Job ID for the actual results.
* @param actualResultsJobId actualResultsJobId or {@code null} for none
*/
public BigQueryUnitTestAction setActualResultsJobId(java.lang.String actualResultsJobId) {
this.actualResultsJobId = actualResultsJobId;
return this;
}

/**
* Output only. SQL script for the actual results.
* @return value or {@code null} for none
*/
public java.lang.String getActualResultsSqlScript() {
return actualResultsSqlScript;
}

/**
* Output only. SQL script for the actual results.
* @param actualResultsSqlScript actualResultsSqlScript or {@code null} for none
*/
public BigQueryUnitTestAction setActualResultsSqlScript(java.lang.String actualResultsSqlScript) {
this.actualResultsSqlScript = actualResultsSqlScript;
return this;
}

/**
* Output only. Job ID for the expected results.
* @return value or {@code null} for none
*/
public java.lang.String getExpectedResultsJobId() {
return expectedResultsJobId;
}

/**
* Output only. Job ID for the expected results.
* @param expectedResultsJobId expectedResultsJobId or {@code null} for none
*/
public BigQueryUnitTestAction setExpectedResultsJobId(java.lang.String expectedResultsJobId) {
this.expectedResultsJobId = expectedResultsJobId;
return this;
}

/**
* Output only. SQL script for the expected results.
* @return value or {@code null} for none
*/
public java.lang.String getExpectedResultsSqlScript() {
return expectedResultsSqlScript;
}

/**
* Output only. SQL script for the expected results.
* @param expectedResultsSqlScript expectedResultsSqlScript or {@code null} for none
*/
public BigQueryUnitTestAction setExpectedResultsSqlScript(java.lang.String expectedResultsSqlScript) {
this.expectedResultsSqlScript = expectedResultsSqlScript;
return this;
}

/**
* Output only. Total bytes billed for this action. Combined total for actual and expected jobs.
* @return value or {@code null} for none
*/
public java.lang.Long getTotalBilledBytes() {
return totalBilledBytes;
}

/**
* Output only. Total bytes billed for this action. Combined total for actual and expected jobs.
* @param totalBilledBytes totalBilledBytes or {@code null} for none
*/
public BigQueryUnitTestAction setTotalBilledBytes(java.lang.Long totalBilledBytes) {
this.totalBilledBytes = totalBilledBytes;
return this;
}

/**
* Output only. Total bytes processed for this action. Combined total for actual and expected
* jobs.
* @return value or {@code null} for none
*/
public java.lang.Long getTotalProcessedBytes() {
return totalProcessedBytes;
}

/**
* Output only. Total bytes processed for this action. Combined total for actual and expected
* jobs.
* @param totalProcessedBytes totalProcessedBytes or {@code null} for none
*/
public BigQueryUnitTestAction setTotalProcessedBytes(java.lang.Long totalProcessedBytes) {
this.totalProcessedBytes = totalProcessedBytes;
return this;
}

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

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

}
Loading
Loading