Skip to content

Commit 55a390a

Browse files
1 parent 6ae67fa commit 55a390a

File tree

18 files changed

+346
-38
lines changed

18 files changed

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

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

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1968,30 +1968,31 @@ public List setPageToken(java.lang.String pageToken) {
19681968

19691969
/**
19701970
* When set to `true`, operations that are reachable are returned as normal, and those
1971-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
1972-
* This can only be `true` when reading across collections e.g. when `parent` is set to
1973-
* `"projects/example/locations/-"`. This field is not by default supported and will
1971+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
1972+
* can only be `true` when reading across collections. For example, when `parent` is set
1973+
* to `"projects/example/locations/-"`. This field is not supported by default and will
19741974
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
19751975
* service or product specific documentation.
19761976
*/
19771977
@com.google.api.client.util.Key
19781978
private java.lang.Boolean returnPartialSuccess;
19791979

19801980
/** When set to `true`, operations that are reachable are returned as normal, and those that are
1981-
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
1982-
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
1983-
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
1984-
explicitly documented otherwise in service or product specific documentation.
1981+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
1982+
when reading across collections. For example, when `parent` is set to
1983+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
1984+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
1985+
documentation.
19851986
*/
19861987
public java.lang.Boolean getReturnPartialSuccess() {
19871988
return returnPartialSuccess;
19881989
}
19891990

19901991
/**
19911992
* When set to `true`, operations that are reachable are returned as normal, and those
1992-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
1993-
* This can only be `true` when reading across collections e.g. when `parent` is set to
1994-
* `"projects/example/locations/-"`. This field is not by default supported and will
1993+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
1994+
* can only be `true` when reading across collections. For example, when `parent` is set
1995+
* to `"projects/example/locations/-"`. This field is not supported by default and will
19951996
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
19961997
* service or product specific documentation.
19971998
*/

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,14 @@ public final class CompilationResult extends com.google.api.client.json.GenericJ
9595
@com.google.api.client.util.Key
9696
private java.lang.String name;
9797

98+
/**
99+
* Output only. Metadata indicating whether this resource is user-scoped. `CompilationResult`
100+
* resource is `user_scoped` only if it is sourced from a workspace.
101+
* The value may be {@code null}.
102+
*/
103+
@com.google.api.client.util.Key
104+
private PrivateResourceMetadata privateResourceMetadata;
105+
98106
/**
99107
* Immutable. The name of the release config to compile. Must be in the format
100108
* `projects/locations/repositories/releaseConfigs`.
@@ -263,6 +271,25 @@ public CompilationResult setName(java.lang.String name) {
263271
return this;
264272
}
265273

274+
/**
275+
* Output only. Metadata indicating whether this resource is user-scoped. `CompilationResult`
276+
* resource is `user_scoped` only if it is sourced from a workspace.
277+
* @return value or {@code null} for none
278+
*/
279+
public PrivateResourceMetadata getPrivateResourceMetadata() {
280+
return privateResourceMetadata;
281+
}
282+
283+
/**
284+
* Output only. Metadata indicating whether this resource is user-scoped. `CompilationResult`
285+
* resource is `user_scoped` only if it is sourced from a workspace.
286+
* @param privateResourceMetadata privateResourceMetadata or {@code null} for none
287+
*/
288+
public CompilationResult setPrivateResourceMetadata(PrivateResourceMetadata privateResourceMetadata) {
289+
this.privateResourceMetadata = privateResourceMetadata;
290+
return this;
291+
}
292+
266293
/**
267294
* Immutable. The name of the release config to compile. Must be in the format
268295
* `projects/locations/repositories/releaseConfigs`.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4545

4646
/**
4747
* Unordered list. Unreachable resources. Populated when the request sets
48-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
4949
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
@@ -88,7 +88,7 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
8888

8989
/**
9090
* Unordered list. Unreachable resources. Populated when the request sets
91-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
9292
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
@@ -98,7 +98,7 @@ public java.util.List<java.lang.String> getUnreachable() {
9898

9999
/**
100100
* Unordered list. Unreachable resources. Populated when the request sets
101-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102102
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.v1.model;
18+
19+
/**
20+
* Metadata used to identify if a resource is user scoped.
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 PrivateResourceMetadata extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. If true, this resource is user-scoped, meaning it is either a workspace or sourced
34+
* from a workspace.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean userScoped;
39+
40+
/**
41+
* Output only. If true, this resource is user-scoped, meaning it is either a workspace or sourced
42+
* from a workspace.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.Boolean getUserScoped() {
46+
return userScoped;
47+
}
48+
49+
/**
50+
* Output only. If true, this resource is user-scoped, meaning it is either a workspace or sourced
51+
* from a workspace.
52+
* @param userScoped userScoped or {@code null} for none
53+
*/
54+
public PrivateResourceMetadata setUserScoped(java.lang.Boolean userScoped) {
55+
this.userScoped = userScoped;
56+
return this;
57+
}
58+
59+
@Override
60+
public PrivateResourceMetadata set(String fieldName, Object value) {
61+
return (PrivateResourceMetadata) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public PrivateResourceMetadata clone() {
66+
return (PrivateResourceMetadata) super.clone();
67+
}
68+
69+
}

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,15 @@ public final class WorkflowInvocation extends com.google.api.client.json.Generic
7373
@com.google.api.client.util.Key
7474
private java.lang.String name;
7575

76+
/**
77+
* Output only. Metadata indicating whether this resource is user-scoped. `WorkflowInvocation`
78+
* resource is `user_scoped` only if it is sourced from a compilation result and the compilation
79+
* result is user-scoped.
80+
* The value may be {@code null}.
81+
*/
82+
@com.google.api.client.util.Key
83+
private PrivateResourceMetadata privateResourceMetadata;
84+
7685
/**
7786
* Output only. The resolved compilation result that was used to create this invocation. Will be
7887
* in the format `projects/locations/repositories/compilationResults`.
@@ -202,6 +211,27 @@ public WorkflowInvocation setName(java.lang.String name) {
202211
return this;
203212
}
204213

214+
/**
215+
* Output only. Metadata indicating whether this resource is user-scoped. `WorkflowInvocation`
216+
* resource is `user_scoped` only if it is sourced from a compilation result and the compilation
217+
* result is user-scoped.
218+
* @return value or {@code null} for none
219+
*/
220+
public PrivateResourceMetadata getPrivateResourceMetadata() {
221+
return privateResourceMetadata;
222+
}
223+
224+
/**
225+
* Output only. Metadata indicating whether this resource is user-scoped. `WorkflowInvocation`
226+
* resource is `user_scoped` only if it is sourced from a compilation result and the compilation
227+
* result is user-scoped.
228+
* @param privateResourceMetadata privateResourceMetadata or {@code null} for none
229+
*/
230+
public WorkflowInvocation setPrivateResourceMetadata(PrivateResourceMetadata privateResourceMetadata) {
231+
this.privateResourceMetadata = privateResourceMetadata;
232+
return this;
233+
}
234+
205235
/**
206236
* Output only. The resolved compilation result that was used to create this invocation. Will be
207237
* in the format `projects/locations/repositories/compilationResults`.

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,14 @@ public final class Workspace extends com.google.api.client.json.GenericJson {
5959
@com.google.api.client.util.Key
6060
private java.lang.String name;
6161

62+
/**
63+
* Output only. Metadata indicating whether this resource is user-scoped. For `Workspace`
64+
* resources, the `user_scoped` field is always `true`.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private PrivateResourceMetadata privateResourceMetadata;
69+
6270
/**
6371
* Output only. The timestamp of when the workspace was created.
6472
* @return value or {@code null} for none
@@ -131,6 +139,25 @@ public Workspace setName(java.lang.String name) {
131139
return this;
132140
}
133141

142+
/**
143+
* Output only. Metadata indicating whether this resource is user-scoped. For `Workspace`
144+
* resources, the `user_scoped` field is always `true`.
145+
* @return value or {@code null} for none
146+
*/
147+
public PrivateResourceMetadata getPrivateResourceMetadata() {
148+
return privateResourceMetadata;
149+
}
150+
151+
/**
152+
* Output only. Metadata indicating whether this resource is user-scoped. For `Workspace`
153+
* resources, the `user_scoped` field is always `true`.
154+
* @param privateResourceMetadata privateResourceMetadata or {@code null} for none
155+
*/
156+
public Workspace setPrivateResourceMetadata(PrivateResourceMetadata privateResourceMetadata) {
157+
this.privateResourceMetadata = privateResourceMetadata;
158+
return this;
159+
}
160+
134161
@Override
135162
public Workspace set(String fieldName, Object value) {
136163
return (Workspace) super.set(fieldName, value);

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-rev20251111-2.0.0</version>
12-
<name>Dataform API v1-rev20251111-2.0.0</name>
11+
<version>v1-rev20251202-2.0.0</version>
12+
<name>Dataform API v1-rev20251202-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-rev20251111-2.0.0</version>
25+
<version>v1-rev20251202-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-rev20251111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1-rev20251202-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-rev20251111-2.0.0</version>
25+
<version>v1beta1-rev20251202-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-rev20251111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20251202-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)