Skip to content

Commit 36eb869

Browse files
1 parent c771162 commit 36eb869

20 files changed

+1319
-8
lines changed

clients/google-api-services-dataform/v1beta1/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-dataform</artifactId>
25-
<version>v1beta1-rev20250323-2.0.0</version>
25+
<version>v1beta1-rev20250420-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-dataform:v1beta1-rev20250323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20250420-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataform/v1beta1/2.0.0/com/google/api/services/dataform/v1beta1/Dataform.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,8 @@ public GetIamPolicy set(String parameterName, Object value) {
21062106
}
21072107
}
21082108
/**
2109-
* Lists Repositories in a given project and location.
2109+
* Lists Repositories in a given project and location. **Note:** *This method can return
2110+
* repositories not shown in the [Dataform UI](https://console.cloud.google.com/bigquery/dataform)*.
21102111
*
21112112
* Create a request for the method "repositories.list".
21122113
*
@@ -2130,7 +2131,9 @@ public class List extends DataformRequest<com.google.api.services.dataform.v1bet
21302131
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+$");
21312132

21322133
/**
2133-
* Lists Repositories in a given project and location.
2134+
* Lists Repositories in a given project and location. **Note:** *This method can return
2135+
* repositories not shown in the [Dataform
2136+
* UI](https://console.cloud.google.com/bigquery/dataform)*.
21342137
*
21352138
* Create a request for the method "repositories.list".
21362139
*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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.dataform.v1beta1.model;
18+
19+
/**
20+
* Error table information, used to write error data into a BigQuery table.
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 Dataform 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 ActionErrorTable extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Error table partition expiration in days. Only positive values are allowed.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Integer retentionDays;
38+
39+
/**
40+
* Error Table target.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private Target target;
45+
46+
/**
47+
* Error table partition expiration in days. Only positive values are allowed.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.Integer getRetentionDays() {
51+
return retentionDays;
52+
}
53+
54+
/**
55+
* Error table partition expiration in days. Only positive values are allowed.
56+
* @param retentionDays retentionDays or {@code null} for none
57+
*/
58+
public ActionErrorTable setRetentionDays(java.lang.Integer retentionDays) {
59+
this.retentionDays = retentionDays;
60+
return this;
61+
}
62+
63+
/**
64+
* Error Table target.
65+
* @return value or {@code null} for none
66+
*/
67+
public Target getTarget() {
68+
return target;
69+
}
70+
71+
/**
72+
* Error Table target.
73+
* @param target target or {@code null} for none
74+
*/
75+
public ActionErrorTable setTarget(Target target) {
76+
this.target = target;
77+
return this;
78+
}
79+
80+
@Override
81+
public ActionErrorTable set(String fieldName, Object value) {
82+
return (ActionErrorTable) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public ActionErrorTable clone() {
87+
return (ActionErrorTable) super.clone();
88+
}
89+
90+
}
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.dataform.v1beta1.model;
18+
19+
/**
20+
* Load definition for incremental load modes
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 Dataform 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 ActionIncrementalLoadMode extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Column name for incremental load modes
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String column;
38+
39+
/**
40+
* Column name for incremental load modes
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getColumn() {
44+
return column;
45+
}
46+
47+
/**
48+
* Column name for incremental load modes
49+
* @param column column or {@code null} for none
50+
*/
51+
public ActionIncrementalLoadMode setColumn(java.lang.String column) {
52+
this.column = column;
53+
return this;
54+
}
55+
56+
@Override
57+
public ActionIncrementalLoadMode set(String fieldName, Object value) {
58+
return (ActionIncrementalLoadMode) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ActionIncrementalLoadMode clone() {
63+
return (ActionIncrementalLoadMode) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
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.dataform.v1beta1.model;
18+
19+
/**
20+
* Simplified load configuration for actions
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 Dataform 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 ActionLoadConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Append into destination table
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private ActionSimpleLoadMode append;
38+
39+
/**
40+
* Insert records where the value exceeds the previous maximum value for a column in the
41+
* destination table
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private ActionIncrementalLoadMode maximum;
46+
47+
/**
48+
* Replace destination table
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private ActionSimpleLoadMode replace;
53+
54+
/**
55+
* Insert records where the value of a column is not already present in the destination table
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private ActionIncrementalLoadMode unique;
60+
61+
/**
62+
* Append into destination table
63+
* @return value or {@code null} for none
64+
*/
65+
public ActionSimpleLoadMode getAppend() {
66+
return append;
67+
}
68+
69+
/**
70+
* Append into destination table
71+
* @param append append or {@code null} for none
72+
*/
73+
public ActionLoadConfig setAppend(ActionSimpleLoadMode append) {
74+
this.append = append;
75+
return this;
76+
}
77+
78+
/**
79+
* Insert records where the value exceeds the previous maximum value for a column in the
80+
* destination table
81+
* @return value or {@code null} for none
82+
*/
83+
public ActionIncrementalLoadMode getMaximum() {
84+
return maximum;
85+
}
86+
87+
/**
88+
* Insert records where the value exceeds the previous maximum value for a column in the
89+
* destination table
90+
* @param maximum maximum or {@code null} for none
91+
*/
92+
public ActionLoadConfig setMaximum(ActionIncrementalLoadMode maximum) {
93+
this.maximum = maximum;
94+
return this;
95+
}
96+
97+
/**
98+
* Replace destination table
99+
* @return value or {@code null} for none
100+
*/
101+
public ActionSimpleLoadMode getReplace() {
102+
return replace;
103+
}
104+
105+
/**
106+
* Replace destination table
107+
* @param replace replace or {@code null} for none
108+
*/
109+
public ActionLoadConfig setReplace(ActionSimpleLoadMode replace) {
110+
this.replace = replace;
111+
return this;
112+
}
113+
114+
/**
115+
* Insert records where the value of a column is not already present in the destination table
116+
* @return value or {@code null} for none
117+
*/
118+
public ActionIncrementalLoadMode getUnique() {
119+
return unique;
120+
}
121+
122+
/**
123+
* Insert records where the value of a column is not already present in the destination table
124+
* @param unique unique or {@code null} for none
125+
*/
126+
public ActionLoadConfig setUnique(ActionIncrementalLoadMode unique) {
127+
this.unique = unique;
128+
return this;
129+
}
130+
131+
@Override
132+
public ActionLoadConfig set(String fieldName, Object value) {
133+
return (ActionLoadConfig) super.set(fieldName, value);
134+
}
135+
136+
@Override
137+
public ActionLoadConfig clone() {
138+
return (ActionLoadConfig) super.clone();
139+
}
140+
141+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.dataform.v1beta1.model;
18+
19+
/**
20+
* Simple load definition
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 Dataform 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 ActionSimpleLoadMode extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public ActionSimpleLoadMode set(String fieldName, Object value) {
34+
return (ActionSimpleLoadMode) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public ActionSimpleLoadMode clone() {
39+
return (ActionSimpleLoadMode) super.clone();
40+
}
41+
42+
}

0 commit comments

Comments
 (0)