Skip to content

Commit a6ba76d

Browse files
1 parent 52a03ee commit a6ba76d

File tree

8 files changed

+228
-12
lines changed

8 files changed

+228
-12
lines changed

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

clients/google-api-services-dataform/v1/2.0.0/com/google/api/services/dataform/v1/model/Relation.java

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ public final class Relation extends com.google.api.client.json.GenericJson {
4545
@com.google.api.client.util.Key
4646
private java.util.List<java.lang.String> clusterExpressions;
4747

48+
/**
49+
* Optional. The connection specifying the credentials to be used to read and write to external
50+
* storage, such as Cloud Storage. The connection can have the form
51+
* `{project}.{location}.{connection_id}` or
52+
* `projects/{project}/locations/{location}/connections/{connection_id}", or be set to DEFAULT.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.String connection;
57+
4858
/**
4959
* A list of actions that this action depends on.
5060
* The value may be {@code null}.
@@ -59,6 +69,13 @@ public final class Relation extends com.google.api.client.json.GenericJson {
5969
@com.google.api.client.util.Key
6070
private java.lang.Boolean disabled;
6171

72+
/**
73+
* Optional. The file format for the BigQuery table.
74+
* The value may be {@code null}.
75+
*/
76+
@com.google.api.client.util.Key
77+
private java.lang.String fileFormat;
78+
6279
/**
6380
* Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is
6481
* `INCREMENTAL_TABLE`.
@@ -124,6 +141,21 @@ public final class Relation extends com.google.api.client.json.GenericJson {
124141
@com.google.api.client.util.Key
125142
private java.lang.String selectQuery;
126143

144+
/**
145+
* Optional. The fully qualified location prefix of the external folder where table data is
146+
* stored. The URI should be in the format `gs://bucket/path_to_table/`.
147+
* The value may be {@code null}.
148+
*/
149+
@com.google.api.client.util.Key
150+
private java.lang.String storageUri;
151+
152+
/**
153+
* Optional. The table format for the BigQuery table.
154+
* The value may be {@code null}.
155+
*/
156+
@com.google.api.client.util.Key
157+
private java.lang.String tableFormat;
158+
127159
/**
128160
* Arbitrary, user-defined tags on this action.
129161
* The value may be {@code null}.
@@ -169,6 +201,29 @@ public Relation setClusterExpressions(java.util.List<java.lang.String> clusterEx
169201
return this;
170202
}
171203

204+
/**
205+
* Optional. The connection specifying the credentials to be used to read and write to external
206+
* storage, such as Cloud Storage. The connection can have the form
207+
* `{project}.{location}.{connection_id}` or
208+
* `projects/{project}/locations/{location}/connections/{connection_id}", or be set to DEFAULT.
209+
* @return value or {@code null} for none
210+
*/
211+
public java.lang.String getConnection() {
212+
return connection;
213+
}
214+
215+
/**
216+
* Optional. The connection specifying the credentials to be used to read and write to external
217+
* storage, such as Cloud Storage. The connection can have the form
218+
* `{project}.{location}.{connection_id}` or
219+
* `projects/{project}/locations/{location}/connections/{connection_id}", or be set to DEFAULT.
220+
* @param connection connection or {@code null} for none
221+
*/
222+
public Relation setConnection(java.lang.String connection) {
223+
this.connection = connection;
224+
return this;
225+
}
226+
172227
/**
173228
* A list of actions that this action depends on.
174229
* @return value or {@code null} for none
@@ -203,6 +258,23 @@ public Relation setDisabled(java.lang.Boolean disabled) {
203258
return this;
204259
}
205260

261+
/**
262+
* Optional. The file format for the BigQuery table.
263+
* @return value or {@code null} for none
264+
*/
265+
public java.lang.String getFileFormat() {
266+
return fileFormat;
267+
}
268+
269+
/**
270+
* Optional. The file format for the BigQuery table.
271+
* @param fileFormat fileFormat or {@code null} for none
272+
*/
273+
public Relation setFileFormat(java.lang.String fileFormat) {
274+
this.fileFormat = fileFormat;
275+
return this;
276+
}
277+
206278
/**
207279
* Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is
208280
* `INCREMENTAL_TABLE`.
@@ -360,6 +432,42 @@ public Relation setSelectQuery(java.lang.String selectQuery) {
360432
return this;
361433
}
362434

435+
/**
436+
* Optional. The fully qualified location prefix of the external folder where table data is
437+
* stored. The URI should be in the format `gs://bucket/path_to_table/`.
438+
* @return value or {@code null} for none
439+
*/
440+
public java.lang.String getStorageUri() {
441+
return storageUri;
442+
}
443+
444+
/**
445+
* Optional. The fully qualified location prefix of the external folder where table data is
446+
* stored. The URI should be in the format `gs://bucket/path_to_table/`.
447+
* @param storageUri storageUri or {@code null} for none
448+
*/
449+
public Relation setStorageUri(java.lang.String storageUri) {
450+
this.storageUri = storageUri;
451+
return this;
452+
}
453+
454+
/**
455+
* Optional. The table format for the BigQuery table.
456+
* @return value or {@code null} for none
457+
*/
458+
public java.lang.String getTableFormat() {
459+
return tableFormat;
460+
}
461+
462+
/**
463+
* Optional. The table format for the BigQuery table.
464+
* @param tableFormat tableFormat or {@code null} for none
465+
*/
466+
public Relation setTableFormat(java.lang.String tableFormat) {
467+
this.tableFormat = tableFormat;
468+
return this;
469+
}
470+
363471
/**
364472
* Arbitrary, user-defined tags on this action.
365473
* @return value or {@code null} for none

clients/google-api-services-dataform/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dataform</artifactId>
11-
<version>v1-rev20251102-2.0.0</version>
12-
<name>Dataform API v1-rev20251102-2.0.0</name>
11+
<version>v1-rev20251111-2.0.0</version>
12+
<name>Dataform API v1-rev20251111-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

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

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ public final class Relation extends com.google.api.client.json.GenericJson {
4545
@com.google.api.client.util.Key
4646
private java.util.List<java.lang.String> clusterExpressions;
4747

48+
/**
49+
* Optional. The connection specifying the credentials to be used to read and write to external
50+
* storage, such as Cloud Storage. The connection can have the form
51+
* `{project}.{location}.{connection_id}` or
52+
* `projects/{project}/locations/{location}/connections/{connection_id}", or be set to DEFAULT.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.String connection;
57+
4858
/**
4959
* A list of actions that this action depends on.
5060
* The value may be {@code null}.
@@ -59,6 +69,13 @@ public final class Relation extends com.google.api.client.json.GenericJson {
5969
@com.google.api.client.util.Key
6070
private java.lang.Boolean disabled;
6171

72+
/**
73+
* Optional. The file format for the BigQuery table.
74+
* The value may be {@code null}.
75+
*/
76+
@com.google.api.client.util.Key
77+
private java.lang.String fileFormat;
78+
6279
/**
6380
* Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is
6481
* `INCREMENTAL_TABLE`.
@@ -124,6 +141,21 @@ public final class Relation extends com.google.api.client.json.GenericJson {
124141
@com.google.api.client.util.Key
125142
private java.lang.String selectQuery;
126143

144+
/**
145+
* Optional. The fully qualified location prefix of the external folder where table data is
146+
* stored. The URI should be in the format `gs://bucket/path_to_table/`.
147+
* The value may be {@code null}.
148+
*/
149+
@com.google.api.client.util.Key
150+
private java.lang.String storageUri;
151+
152+
/**
153+
* Optional. The table format for the BigQuery table.
154+
* The value may be {@code null}.
155+
*/
156+
@com.google.api.client.util.Key
157+
private java.lang.String tableFormat;
158+
127159
/**
128160
* Arbitrary, user-defined tags on this action.
129161
* The value may be {@code null}.
@@ -169,6 +201,29 @@ public Relation setClusterExpressions(java.util.List<java.lang.String> clusterEx
169201
return this;
170202
}
171203

204+
/**
205+
* Optional. The connection specifying the credentials to be used to read and write to external
206+
* storage, such as Cloud Storage. The connection can have the form
207+
* `{project}.{location}.{connection_id}` or
208+
* `projects/{project}/locations/{location}/connections/{connection_id}", or be set to DEFAULT.
209+
* @return value or {@code null} for none
210+
*/
211+
public java.lang.String getConnection() {
212+
return connection;
213+
}
214+
215+
/**
216+
* Optional. The connection specifying the credentials to be used to read and write to external
217+
* storage, such as Cloud Storage. The connection can have the form
218+
* `{project}.{location}.{connection_id}` or
219+
* `projects/{project}/locations/{location}/connections/{connection_id}", or be set to DEFAULT.
220+
* @param connection connection or {@code null} for none
221+
*/
222+
public Relation setConnection(java.lang.String connection) {
223+
this.connection = connection;
224+
return this;
225+
}
226+
172227
/**
173228
* A list of actions that this action depends on.
174229
* @return value or {@code null} for none
@@ -203,6 +258,23 @@ public Relation setDisabled(java.lang.Boolean disabled) {
203258
return this;
204259
}
205260

261+
/**
262+
* Optional. The file format for the BigQuery table.
263+
* @return value or {@code null} for none
264+
*/
265+
public java.lang.String getFileFormat() {
266+
return fileFormat;
267+
}
268+
269+
/**
270+
* Optional. The file format for the BigQuery table.
271+
* @param fileFormat fileFormat or {@code null} for none
272+
*/
273+
public Relation setFileFormat(java.lang.String fileFormat) {
274+
this.fileFormat = fileFormat;
275+
return this;
276+
}
277+
206278
/**
207279
* Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is
208280
* `INCREMENTAL_TABLE`.
@@ -360,6 +432,42 @@ public Relation setSelectQuery(java.lang.String selectQuery) {
360432
return this;
361433
}
362434

435+
/**
436+
* Optional. The fully qualified location prefix of the external folder where table data is
437+
* stored. The URI should be in the format `gs://bucket/path_to_table/`.
438+
* @return value or {@code null} for none
439+
*/
440+
public java.lang.String getStorageUri() {
441+
return storageUri;
442+
}
443+
444+
/**
445+
* Optional. The fully qualified location prefix of the external folder where table data is
446+
* stored. The URI should be in the format `gs://bucket/path_to_table/`.
447+
* @param storageUri storageUri or {@code null} for none
448+
*/
449+
public Relation setStorageUri(java.lang.String storageUri) {
450+
this.storageUri = storageUri;
451+
return this;
452+
}
453+
454+
/**
455+
* Optional. The table format for the BigQuery table.
456+
* @return value or {@code null} for none
457+
*/
458+
public java.lang.String getTableFormat() {
459+
return tableFormat;
460+
}
461+
462+
/**
463+
* Optional. The table format for the BigQuery table.
464+
* @param tableFormat tableFormat or {@code null} for none
465+
*/
466+
public Relation setTableFormat(java.lang.String tableFormat) {
467+
this.tableFormat = tableFormat;
468+
return this;
469+
}
470+
363471
/**
364472
* Arbitrary, user-defined tags on this action.
365473
* @return value or {@code null} for none

clients/google-api-services-dataform/v1beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dataform</artifactId>
11-
<version>v1beta1-rev20251102-2.0.0</version>
12-
<name>Dataform API v1beta1-rev20251102-2.0.0</name>
11+
<version>v1beta1-rev20251111-2.0.0</version>
12+
<name>Dataform API v1beta1-rev20251111-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)