Skip to content

Commit 21748f5

Browse files
1 parent 3ada4c0 commit 21748f5

File tree

5 files changed

+103
-7
lines changed

5 files changed

+103
-7
lines changed

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
25-
<version>v1b3-rev20240113-2.0.0</version>
25+
<version>v1b3-rev20240121-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-dataflow:v1b3-rev20240113-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20240121-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/ParameterMetadata.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ public final class ParameterMetadata extends com.google.api.client.json.GenericJ
6868
@com.google.api.client.util.Key
6969
private java.lang.String helpText;
7070

71+
/**
72+
* Optional. Whether the parameter should be hidden in the UI.
73+
* The value may be {@code null}.
74+
*/
75+
@com.google.api.client.util.Key
76+
private java.lang.Boolean hiddenUi;
77+
7178
/**
7279
* Optional. Whether the parameter is optional. Defaults to false.
7380
* The value may be {@code null}.
@@ -215,6 +222,23 @@ public ParameterMetadata setHelpText(java.lang.String helpText) {
215222
return this;
216223
}
217224

225+
/**
226+
* Optional. Whether the parameter should be hidden in the UI.
227+
* @return value or {@code null} for none
228+
*/
229+
public java.lang.Boolean getHiddenUi() {
230+
return hiddenUi;
231+
}
232+
233+
/**
234+
* Optional. Whether the parameter should be hidden in the UI.
235+
* @param hiddenUi hiddenUi or {@code null} for none
236+
*/
237+
public ParameterMetadata setHiddenUi(java.lang.Boolean hiddenUi) {
238+
this.hiddenUi = hiddenUi;
239+
return this;
240+
}
241+
218242
/**
219243
* Optional. Whether the parameter is optional. Defaults to false.
220244
* @return value or {@code null} for none

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/TemplateMetadata.java

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,27 @@ public final class TemplateMetadata extends com.google.api.client.json.GenericJs
5656
com.google.api.client.util.Data.nullOf(ParameterMetadata.class);
5757
}
5858

59+
/**
60+
* Optional. Indicates if the template is streaming or not.
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private java.lang.Boolean streaming;
65+
66+
/**
67+
* Optional. Indicates if the streaming template supports at least once mode.
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key
71+
private java.lang.Boolean supportsAtLeastOnce;
72+
73+
/**
74+
* Optional. Indicates if the streaming template supports exactly once mode.
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private java.lang.Boolean supportsExactlyOnce;
79+
5980
/**
6081
* Optional. A description of the template.
6182
* @return value or {@code null} for none
@@ -107,6 +128,57 @@ public TemplateMetadata setParameters(java.util.List<ParameterMetadata> paramete
107128
return this;
108129
}
109130

131+
/**
132+
* Optional. Indicates if the template is streaming or not.
133+
* @return value or {@code null} for none
134+
*/
135+
public java.lang.Boolean getStreaming() {
136+
return streaming;
137+
}
138+
139+
/**
140+
* Optional. Indicates if the template is streaming or not.
141+
* @param streaming streaming or {@code null} for none
142+
*/
143+
public TemplateMetadata setStreaming(java.lang.Boolean streaming) {
144+
this.streaming = streaming;
145+
return this;
146+
}
147+
148+
/**
149+
* Optional. Indicates if the streaming template supports at least once mode.
150+
* @return value or {@code null} for none
151+
*/
152+
public java.lang.Boolean getSupportsAtLeastOnce() {
153+
return supportsAtLeastOnce;
154+
}
155+
156+
/**
157+
* Optional. Indicates if the streaming template supports at least once mode.
158+
* @param supportsAtLeastOnce supportsAtLeastOnce or {@code null} for none
159+
*/
160+
public TemplateMetadata setSupportsAtLeastOnce(java.lang.Boolean supportsAtLeastOnce) {
161+
this.supportsAtLeastOnce = supportsAtLeastOnce;
162+
return this;
163+
}
164+
165+
/**
166+
* Optional. Indicates if the streaming template supports exactly once mode.
167+
* @return value or {@code null} for none
168+
*/
169+
public java.lang.Boolean getSupportsExactlyOnce() {
170+
return supportsExactlyOnce;
171+
}
172+
173+
/**
174+
* Optional. Indicates if the streaming template supports exactly once mode.
175+
* @param supportsExactlyOnce supportsExactlyOnce or {@code null} for none
176+
*/
177+
public TemplateMetadata setSupportsExactlyOnce(java.lang.Boolean supportsExactlyOnce) {
178+
this.supportsExactlyOnce = supportsExactlyOnce;
179+
return this;
180+
}
181+
110182
@Override
111183
public TemplateMetadata set(String fieldName, Object value) {
112184
return (TemplateMetadata) super.set(fieldName, value);

clients/google-api-services-dataflow/v1b3/2.0.0/pom.xml

Lines changed: 3 additions & 3 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-dataflow</artifactId>
11-
<version>v1b3-rev20240113-2.0.0</version>
12-
<name>Dataflow API v1b3-rev20240113-2.0.0</name>
11+
<version>v1b3-rev20240121-2.0.0</version>
12+
<name>Dataflow API v1b3-rev20240121-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -91,7 +91,7 @@
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.43.3/</link>
94-
<link>https://googleapis.dev/java/google-oauth-client/1.34.1/</link>
94+
<link>https://googleapis.dev/java/google-oauth-client/1.35.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.2.0/</link>
9696
</links>
9797
</configuration>

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
25-
<version>v1b3-rev20240113-2.0.0</version>
25+
<version>v1b3-rev20240121-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-dataflow:v1b3-rev20240113-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20240121-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)