Skip to content

Commit caf86c9

Browse files
1 parent 1f9752c commit caf86c9

File tree

13 files changed

+4857
-1811
lines changed

13 files changed

+4857
-1811
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-rev20250917-2.0.0</version>
25+
<version>v1beta1-rev20251007-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-rev20250917-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20251007-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: 3867 additions & 1805 deletions
Large diffs are not rendered by default.

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

Lines changed: 270 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class Config extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.lang.String defaultKmsKeyName;
3939

40+
/**
41+
* Output only. All the metadata information that is used internally to serve the resource. For
42+
* example: timestamps, flags, status fields, etc. The format of this field is a JSON string.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String internalMetadata;
47+
4048
/**
4149
* Identifier. The config name.
4250
* The value may be {@code null}.
@@ -63,6 +71,25 @@ public Config setDefaultKmsKeyName(java.lang.String defaultKmsKeyName) {
6371
return this;
6472
}
6573

74+
/**
75+
* Output only. All the metadata information that is used internally to serve the resource. For
76+
* example: timestamps, flags, status fields, etc. The format of this field is a JSON string.
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.String getInternalMetadata() {
80+
return internalMetadata;
81+
}
82+
83+
/**
84+
* Output only. All the metadata information that is used internally to serve the resource. For
85+
* example: timestamps, flags, status fields, etc. The format of this field is a JSON string.
86+
* @param internalMetadata internalMetadata or {@code null} for none
87+
*/
88+
public Config setInternalMetadata(java.lang.String internalMetadata) {
89+
this.internalMetadata = internalMetadata;
90+
return this;
91+
}
92+
6693
/**
6794
* Identifier. The config name.
6895
* @return value or {@code null} for none
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
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+
* Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like
21+
* expression language. The syntax and semantics of CEL are documented at
22+
* https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit"
23+
* description: "Determines if a summary is less than 100 chars" expression:
24+
* "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description:
25+
* "Determines if requestor is the document owner" expression: "document.owner ==
26+
* request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine
27+
* whether the document should be publicly visible" expression: "document.type != 'private' &&
28+
* document.type != 'internal'" Example (Data Manipulation): title: "Notification string"
29+
* description: "Create a notification string with a timestamp." expression: "'New message received
30+
* at ' + string(document.create_time)" The exact variables and functions that may be referenced
31+
* within an expression are determined by the service that evaluates it. See the service
32+
* documentation for additional information.
33+
*
34+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
35+
* transmitted over HTTP when working with the Dataform API. For a detailed explanation see:
36+
* <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>
37+
* </p>
38+
*
39+
* @author Google, Inc.
40+
*/
41+
@SuppressWarnings("javadoc")
42+
public final class Expr extends com.google.api.client.json.GenericJson {
43+
44+
/**
45+
* Optional. Description of the expression. This is a longer text which describes the expression,
46+
* e.g. when hovered over it in a UI.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.lang.String description;
51+
52+
/**
53+
* Textual representation of an expression in Common Expression Language syntax.
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.lang.String expression;
58+
59+
/**
60+
* Optional. String indicating the location of the expression for error reporting, e.g. a file
61+
* name and a position in the file.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private java.lang.String location;
66+
67+
/**
68+
* Optional. Title for the expression, i.e. a short string describing its purpose. This can be
69+
* used e.g. in UIs which allow to enter the expression.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.String title;
74+
75+
/**
76+
* Optional. Description of the expression. This is a longer text which describes the expression,
77+
* e.g. when hovered over it in a UI.
78+
* @return value or {@code null} for none
79+
*/
80+
public java.lang.String getDescription() {
81+
return description;
82+
}
83+
84+
/**
85+
* Optional. Description of the expression. This is a longer text which describes the expression,
86+
* e.g. when hovered over it in a UI.
87+
* @param description description or {@code null} for none
88+
*/
89+
public Expr setDescription(java.lang.String description) {
90+
this.description = description;
91+
return this;
92+
}
93+
94+
/**
95+
* Textual representation of an expression in Common Expression Language syntax.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.String getExpression() {
99+
return expression;
100+
}
101+
102+
/**
103+
* Textual representation of an expression in Common Expression Language syntax.
104+
* @param expression expression or {@code null} for none
105+
*/
106+
public Expr setExpression(java.lang.String expression) {
107+
this.expression = expression;
108+
return this;
109+
}
110+
111+
/**
112+
* Optional. String indicating the location of the expression for error reporting, e.g. a file
113+
* name and a position in the file.
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.String getLocation() {
117+
return location;
118+
}
119+
120+
/**
121+
* Optional. String indicating the location of the expression for error reporting, e.g. a file
122+
* name and a position in the file.
123+
* @param location location or {@code null} for none
124+
*/
125+
public Expr setLocation(java.lang.String location) {
126+
this.location = location;
127+
return this;
128+
}
129+
130+
/**
131+
* Optional. Title for the expression, i.e. a short string describing its purpose. This can be
132+
* used e.g. in UIs which allow to enter the expression.
133+
* @return value or {@code null} for none
134+
*/
135+
public java.lang.String getTitle() {
136+
return title;
137+
}
138+
139+
/**
140+
* Optional. Title for the expression, i.e. a short string describing its purpose. This can be
141+
* used e.g. in UIs which allow to enter the expression.
142+
* @param title title or {@code null} for none
143+
*/
144+
public Expr setTitle(java.lang.String title) {
145+
this.title = title;
146+
return this;
147+
}
148+
149+
@Override
150+
public Expr set(String fieldName, Object value) {
151+
return (Expr) super.set(fieldName, value);
152+
}
153+
154+
@Override
155+
public Expr clone() {
156+
return (Expr) super.clone();
157+
}
158+
159+
}

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ public final class InvocationConfig extends com.google.api.client.json.GenericJs
5151
@com.google.api.client.util.Key
5252
private java.util.List<Target> includedTargets;
5353

54+
/**
55+
* Optional. Specifies the priority for query execution in BigQuery. More information can be found
56+
* at https://cloud.google.com/bigquery/docs/running-queries#queries.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String queryPriority;
61+
5462
/**
5563
* Optional. The service account to run workflow invocations under.
5664
* The value may be {@code null}.
@@ -123,6 +131,25 @@ public InvocationConfig setIncludedTargets(java.util.List<Target> includedTarget
123131
return this;
124132
}
125133

134+
/**
135+
* Optional. Specifies the priority for query execution in BigQuery. More information can be found
136+
* at https://cloud.google.com/bigquery/docs/running-queries#queries.
137+
* @return value or {@code null} for none
138+
*/
139+
public java.lang.String getQueryPriority() {
140+
return queryPriority;
141+
}
142+
143+
/**
144+
* Optional. Specifies the priority for query execution in BigQuery. More information can be found
145+
* at https://cloud.google.com/bigquery/docs/running-queries#queries.
146+
* @param queryPriority queryPriority or {@code null} for none
147+
*/
148+
public InvocationConfig setQueryPriority(java.lang.String queryPriority) {
149+
this.queryPriority = queryPriority;
150+
return this;
151+
}
152+
126153
/**
127154
* Optional. The service account to run workflow invocations under.
128155
* @return value or {@code null} for none

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) super.set(fieldName, value);

0 commit comments

Comments
 (0)