Skip to content

Commit 083ac02

Browse files
1 parent 9c6283e commit 083ac02

File tree

12 files changed

+319
-21
lines changed

12 files changed

+319
-21
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-rev20250202-2.0.0</version>
25+
<version>v1beta1-rev20250223-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-rev20250202-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20250223-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: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5610,7 +5610,7 @@ public Cancel cancel(java.lang.String name, com.google.api.services.dataform.v1b
56105610
return result;
56115611
}
56125612

5613-
public class Cancel extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Empty> {
5613+
public class Cancel extends DataformRequest<com.google.api.services.dataform.v1beta1.model.CancelWorkflowInvocationResponse> {
56145614

56155615
private static final String REST_PATH = "v1beta1/{+name}:cancel";
56165616

@@ -5633,7 +5633,7 @@ public class Cancel extends DataformRequest<com.google.api.services.dataform.v1b
56335633
* @since 1.13
56345634
*/
56355635
protected Cancel(java.lang.String name, com.google.api.services.dataform.v1beta1.model.CancelWorkflowInvocationRequest content) {
5636-
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Empty.class);
5636+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.CancelWorkflowInvocationResponse.class);
56375637
this.name = com.google.api.client.util.Preconditions.checkNotNull(name, "Required parameter name must be specified.");
56385638
if (!getSuppressPatternChecks()) {
56395639
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
@@ -6605,7 +6605,7 @@ public Commit commit(java.lang.String name, com.google.api.services.dataform.v1b
66056605
return result;
66066606
}
66076607

6608-
public class Commit extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Empty> {
6608+
public class Commit extends DataformRequest<com.google.api.services.dataform.v1beta1.model.CommitWorkspaceChangesResponse> {
66096609

66106610
private static final String REST_PATH = "v1beta1/{+name}:commit";
66116611

@@ -6628,7 +6628,7 @@ public class Commit extends DataformRequest<com.google.api.services.dataform.v1b
66286628
* @since 1.13
66296629
*/
66306630
protected Commit(java.lang.String name, com.google.api.services.dataform.v1beta1.model.CommitWorkspaceChangesRequest content) {
6631-
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Empty.class);
6631+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.CommitWorkspaceChangesResponse.class);
66326632
this.name = com.google.api.client.util.Preconditions.checkNotNull(name, "Required parameter name must be specified.");
66336633
if (!getSuppressPatternChecks()) {
66346634
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
@@ -8588,7 +8588,7 @@ public Pull pull(java.lang.String name, com.google.api.services.dataform.v1beta1
85888588
return result;
85898589
}
85908590

8591-
public class Pull extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Empty> {
8591+
public class Pull extends DataformRequest<com.google.api.services.dataform.v1beta1.model.PullGitCommitsResponse> {
85928592

85938593
private static final String REST_PATH = "v1beta1/{+name}:pull";
85948594

@@ -8610,7 +8610,7 @@ public class Pull extends DataformRequest<com.google.api.services.dataform.v1bet
86108610
* @since 1.13
86118611
*/
86128612
protected Pull(java.lang.String name, com.google.api.services.dataform.v1beta1.model.PullGitCommitsRequest content) {
8613-
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Empty.class);
8613+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.PullGitCommitsResponse.class);
86148614
this.name = com.google.api.client.util.Preconditions.checkNotNull(name, "Required parameter name must be specified.");
86158615
if (!getSuppressPatternChecks()) {
86168616
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
@@ -8718,7 +8718,7 @@ public Push push(java.lang.String name, com.google.api.services.dataform.v1beta1
87188718
return result;
87198719
}
87208720

8721-
public class Push extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Empty> {
8721+
public class Push extends DataformRequest<com.google.api.services.dataform.v1beta1.model.PushGitCommitsResponse> {
87228722

87238723
private static final String REST_PATH = "v1beta1/{+name}:push";
87248724

@@ -8740,7 +8740,7 @@ public class Push extends DataformRequest<com.google.api.services.dataform.v1bet
87408740
* @since 1.13
87418741
*/
87428742
protected Push(java.lang.String name, com.google.api.services.dataform.v1beta1.model.PushGitCommitsRequest content) {
8743-
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Empty.class);
8743+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.PushGitCommitsResponse.class);
87448744
this.name = com.google.api.client.util.Preconditions.checkNotNull(name, "Required parameter name must be specified.");
87458745
if (!getSuppressPatternChecks()) {
87468746
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
@@ -9245,7 +9245,7 @@ public RemoveDirectory removeDirectory(java.lang.String workspace, com.google.ap
92459245
return result;
92469246
}
92479247

9248-
public class RemoveDirectory extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Empty> {
9248+
public class RemoveDirectory extends DataformRequest<com.google.api.services.dataform.v1beta1.model.RemoveDirectoryResponse> {
92499249

92509250
private static final String REST_PATH = "v1beta1/{+workspace}:removeDirectory";
92519251

@@ -9268,7 +9268,7 @@ public class RemoveDirectory extends DataformRequest<com.google.api.services.dat
92689268
* @since 1.13
92699269
*/
92709270
protected RemoveDirectory(java.lang.String workspace, com.google.api.services.dataform.v1beta1.model.RemoveDirectoryRequest content) {
9271-
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Empty.class);
9271+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.RemoveDirectoryResponse.class);
92729272
this.workspace = com.google.api.client.util.Preconditions.checkNotNull(workspace, "Required parameter workspace must be specified.");
92739273
if (!getSuppressPatternChecks()) {
92749274
com.google.api.client.util.Preconditions.checkArgument(WORKSPACE_PATTERN.matcher(workspace).matches(),
@@ -9376,7 +9376,7 @@ public RemoveFile removeFile(java.lang.String workspace, com.google.api.services
93769376
return result;
93779377
}
93789378

9379-
public class RemoveFile extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Empty> {
9379+
public class RemoveFile extends DataformRequest<com.google.api.services.dataform.v1beta1.model.RemoveFileResponse> {
93809380

93819381
private static final String REST_PATH = "v1beta1/{+workspace}:removeFile";
93829382

@@ -9399,7 +9399,7 @@ public class RemoveFile extends DataformRequest<com.google.api.services.dataform
93999399
* @since 1.13
94009400
*/
94019401
protected RemoveFile(java.lang.String workspace, com.google.api.services.dataform.v1beta1.model.RemoveFileRequest content) {
9402-
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Empty.class);
9402+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.RemoveFileResponse.class);
94039403
this.workspace = com.google.api.client.util.Preconditions.checkNotNull(workspace, "Required parameter workspace must be specified.");
94049404
if (!getSuppressPatternChecks()) {
94059405
com.google.api.client.util.Preconditions.checkArgument(WORKSPACE_PATTERN.matcher(workspace).matches(),
@@ -9507,7 +9507,7 @@ public Reset reset(java.lang.String name, com.google.api.services.dataform.v1bet
95079507
return result;
95089508
}
95099509

9510-
public class Reset extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Empty> {
9510+
public class Reset extends DataformRequest<com.google.api.services.dataform.v1beta1.model.ResetWorkspaceChangesResponse> {
95119511

95129512
private static final String REST_PATH = "v1beta1/{+name}:reset";
95139513

@@ -9530,7 +9530,7 @@ public class Reset extends DataformRequest<com.google.api.services.dataform.v1be
95309530
* @since 1.13
95319531
*/
95329532
protected Reset(java.lang.String name, com.google.api.services.dataform.v1beta1.model.ResetWorkspaceChangesRequest content) {
9533-
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Empty.class);
9533+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.ResetWorkspaceChangesResponse.class);
95349534
this.name = com.google.api.client.util.Preconditions.checkNotNull(name, "Required parameter name must be specified.");
95359535
if (!getSuppressPatternChecks()) {
95369536
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
*/
2424
public class DataformScopes {
2525

26+
/** View and manage your data in Google BigQuery and see the email address for your Google Account. */
27+
public static final String BIGQUERY = "https://www.googleapis.com/auth/bigquery";
28+
2629
/** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */
2730
public static final String CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform";
2831

@@ -33,6 +36,7 @@ public class DataformScopes {
3336
*/
3437
public static java.util.Set<String> all() {
3538
java.util.Set<String> set = new java.util.HashSet<String>();
39+
set.add(BIGQUERY);
3640
set.add(CLOUD_PLATFORM);
3741
return java.util.Collections.unmodifiableSet(set);
3842
}
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+
* `CancelWorkflowInvocation` response message.
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 CancelWorkflowInvocationResponse extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public CancelWorkflowInvocationResponse set(String fieldName, Object value) {
34+
return (CancelWorkflowInvocationResponse) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public CancelWorkflowInvocationResponse clone() {
39+
return (CancelWorkflowInvocationResponse) super.clone();
40+
}
41+
42+
}
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+
* `CommitWorkspaceChanges` response message.
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 CommitWorkspaceChangesResponse extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public CommitWorkspaceChangesResponse set(String fieldName, Object value) {
34+
return (CommitWorkspaceChangesResponse) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public CommitWorkspaceChangesResponse clone() {
39+
return (CommitWorkspaceChangesResponse) super.clone();
40+
}
41+
42+
}
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+
* `PullGitCommits` response message.
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 PullGitCommitsResponse extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public PullGitCommitsResponse set(String fieldName, Object value) {
34+
return (PullGitCommitsResponse) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public PullGitCommitsResponse clone() {
39+
return (PullGitCommitsResponse) super.clone();
40+
}
41+
42+
}
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+
* `PushGitCommits` response message.
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 PushGitCommitsResponse extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public PushGitCommitsResponse set(String fieldName, Object value) {
34+
return (PushGitCommitsResponse) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public PushGitCommitsResponse clone() {
39+
return (PushGitCommitsResponse) super.clone();
40+
}
41+
42+
}
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+
* `RemoveDirectory` response message.
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 RemoveDirectoryResponse extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public RemoveDirectoryResponse set(String fieldName, Object value) {
34+
return (RemoveDirectoryResponse) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public RemoveDirectoryResponse clone() {
39+
return (RemoveDirectoryResponse) super.clone();
40+
}
41+
42+
}

0 commit comments

Comments
 (0)