Skip to content

Commit 54e2914

Browse files
1 parent 05bc637 commit 54e2914

File tree

11 files changed

+424
-6
lines changed

11 files changed

+424
-6
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-rev20240323-2.0.0</version>
25+
<version>v1beta1-rev20240420-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-rev20240323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20240420-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: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3864,6 +3864,31 @@ public List setFilter(java.lang.String filter) {
38643864
return this;
38653865
}
38663866

3867+
/**
3868+
* Optional. This field only supports ordering by `name` and `create_time`. If
3869+
* unspecified, the server will choose the ordering. If specified, the default order is
3870+
* ascending for the `name` field.
3871+
*/
3872+
@com.google.api.client.util.Key
3873+
private java.lang.String orderBy;
3874+
3875+
/** Optional. This field only supports ordering by `name` and `create_time`. If unspecified, the server
3876+
will choose the ordering. If specified, the default order is ascending for the `name` field.
3877+
*/
3878+
public java.lang.String getOrderBy() {
3879+
return orderBy;
3880+
}
3881+
3882+
/**
3883+
* Optional. This field only supports ordering by `name` and `create_time`. If
3884+
* unspecified, the server will choose the ordering. If specified, the default order is
3885+
* ascending for the `name` field.
3886+
*/
3887+
public List setOrderBy(java.lang.String orderBy) {
3888+
this.orderBy = orderBy;
3889+
return this;
3890+
}
3891+
38673892
/**
38683893
* Optional. Maximum number of compilation results to return. The server may return
38693894
* fewer items than requested. If unspecified, the server will pick an appropriate

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,40 @@
2929
@SuppressWarnings("javadoc")
3030
public final class BigQueryAction extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. The ID of the BigQuery job that executed the SQL in sql_script. Only set once the
34+
* job has started to run.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String jobId;
39+
3240
/**
3341
* Output only. The generated BigQuery SQL script that will be executed.
3442
* The value may be {@code null}.
3543
*/
3644
@com.google.api.client.util.Key
3745
private java.lang.String sqlScript;
3846

47+
/**
48+
* Output only. The ID of the BigQuery job that executed the SQL in sql_script. Only set once the
49+
* job has started to run.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getJobId() {
53+
return jobId;
54+
}
55+
56+
/**
57+
* Output only. The ID of the BigQuery job that executed the SQL in sql_script. Only set once the
58+
* job has started to run.
59+
* @param jobId jobId or {@code null} for none
60+
*/
61+
public BigQueryAction setJobId(java.lang.String jobId) {
62+
this.jobId = jobId;
63+
return this;
64+
}
65+
3966
/**
4067
* Output only. The generated BigQuery SQL script that will be executed.
4168
* @return value or {@code null} for none

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ public final class CodeCompilationConfig extends com.google.api.client.json.Gene
5858
@com.google.api.client.util.Key
5959
private java.lang.String defaultLocation;
6060

61+
/**
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private NotebookRuntimeOptions defaultNotebookRuntimeOptions;
66+
6167
/**
6268
* Optional. The default schema (BigQuery dataset ID).
6369
* The value may be {@code null}.
@@ -156,6 +162,21 @@ public CodeCompilationConfig setDefaultLocation(java.lang.String defaultLocation
156162
return this;
157163
}
158164

165+
/**
166+
* @return value or {@code null} for none
167+
*/
168+
public NotebookRuntimeOptions getDefaultNotebookRuntimeOptions() {
169+
return defaultNotebookRuntimeOptions;
170+
}
171+
172+
/**
173+
* @param defaultNotebookRuntimeOptions defaultNotebookRuntimeOptions or {@code null} for none
174+
*/
175+
public CodeCompilationConfig setDefaultNotebookRuntimeOptions(NotebookRuntimeOptions defaultNotebookRuntimeOptions) {
176+
this.defaultNotebookRuntimeOptions = defaultNotebookRuntimeOptions;
177+
return this;
178+
}
179+
159180
/**
160181
* Optional. The default schema (BigQuery dataset ID).
161182
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class CompilationResultAction extends com.google.api.client.json.Ge
5959
@com.google.api.client.util.Key
6060
private java.lang.String filePath;
6161

62+
/**
63+
* The notebook executed by this action.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private Notebook notebook;
68+
6269
/**
6370
* The database operations executed by this action.
6471
* The value may be {@code null}.
@@ -152,6 +159,23 @@ public CompilationResultAction setFilePath(java.lang.String filePath) {
152159
return this;
153160
}
154161

162+
/**
163+
* The notebook executed by this action.
164+
* @return value or {@code null} for none
165+
*/
166+
public Notebook getNotebook() {
167+
return notebook;
168+
}
169+
170+
/**
171+
* The notebook executed by this action.
172+
* @param notebook notebook or {@code null} for none
173+
*/
174+
public CompilationResultAction setNotebook(Notebook notebook) {
175+
this.notebook = notebook;
176+
return this;
177+
}
178+
155179
/**
156180
* The database operations executed by this action.
157181
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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+
* Model definition for Notebook.
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 Notebook extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The contents of the notebook.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String contents;
38+
39+
/**
40+
* A list of actions that this action depends on.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<Target> dependencyTargets;
45+
46+
/**
47+
* Whether this action is disabled (i.e. should not be run).
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.Boolean disabled;
52+
53+
/**
54+
* Arbitrary, user-defined tags on this action.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<java.lang.String> tags;
59+
60+
/**
61+
* The contents of the notebook.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getContents() {
65+
return contents;
66+
}
67+
68+
/**
69+
* The contents of the notebook.
70+
* @param contents contents or {@code null} for none
71+
*/
72+
public Notebook setContents(java.lang.String contents) {
73+
this.contents = contents;
74+
return this;
75+
}
76+
77+
/**
78+
* A list of actions that this action depends on.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.util.List<Target> getDependencyTargets() {
82+
return dependencyTargets;
83+
}
84+
85+
/**
86+
* A list of actions that this action depends on.
87+
* @param dependencyTargets dependencyTargets or {@code null} for none
88+
*/
89+
public Notebook setDependencyTargets(java.util.List<Target> dependencyTargets) {
90+
this.dependencyTargets = dependencyTargets;
91+
return this;
92+
}
93+
94+
/**
95+
* Whether this action is disabled (i.e. should not be run).
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.Boolean getDisabled() {
99+
return disabled;
100+
}
101+
102+
/**
103+
* Whether this action is disabled (i.e. should not be run).
104+
* @param disabled disabled or {@code null} for none
105+
*/
106+
public Notebook setDisabled(java.lang.Boolean disabled) {
107+
this.disabled = disabled;
108+
return this;
109+
}
110+
111+
/**
112+
* Arbitrary, user-defined tags on this action.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.util.List<java.lang.String> getTags() {
116+
return tags;
117+
}
118+
119+
/**
120+
* Arbitrary, user-defined tags on this action.
121+
* @param tags tags or {@code null} for none
122+
*/
123+
public Notebook setTags(java.util.List<java.lang.String> tags) {
124+
this.tags = tags;
125+
return this;
126+
}
127+
128+
@Override
129+
public Notebook set(String fieldName, Object value) {
130+
return (Notebook) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public Notebook clone() {
135+
return (Notebook) super.clone();
136+
}
137+
138+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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 workflow action that will run against a Notebook runtime.
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 NotebookAction extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The code contents of a Notebook to be run.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String contents;
38+
39+
/**
40+
* Output only. The ID of the Vertex job that executed the notebook in contents and also the ID
41+
* used for the outputs created in GCS buckets. Only set once the job has started to run.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String jobId;
46+
47+
/**
48+
* Output only. The code contents of a Notebook to be run.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getContents() {
52+
return contents;
53+
}
54+
55+
/**
56+
* Output only. The code contents of a Notebook to be run.
57+
* @param contents contents or {@code null} for none
58+
*/
59+
public NotebookAction setContents(java.lang.String contents) {
60+
this.contents = contents;
61+
return this;
62+
}
63+
64+
/**
65+
* Output only. The ID of the Vertex job that executed the notebook in contents and also the ID
66+
* used for the outputs created in GCS buckets. Only set once the job has started to run.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getJobId() {
70+
return jobId;
71+
}
72+
73+
/**
74+
* Output only. The ID of the Vertex job that executed the notebook in contents and also the ID
75+
* used for the outputs created in GCS buckets. Only set once the job has started to run.
76+
* @param jobId jobId or {@code null} for none
77+
*/
78+
public NotebookAction setJobId(java.lang.String jobId) {
79+
this.jobId = jobId;
80+
return this;
81+
}
82+
83+
@Override
84+
public NotebookAction set(String fieldName, Object value) {
85+
return (NotebookAction) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public NotebookAction clone() {
90+
return (NotebookAction) super.clone();
91+
}
92+
93+
}

0 commit comments

Comments
 (0)