Skip to content

Commit 58aa25d

Browse files
1 parent ea37eff commit 58aa25d

File tree

10 files changed

+262
-20
lines changed

10 files changed

+262
-20
lines changed

clients/google-api-services-datafusion/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-datafusion</artifactId>
25-
<version>v1-rev20250122-2.0.0</version>
25+
<version>v1-rev20250224-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-datafusion:v1-rev20250122-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1-rev20250224-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datafusion/v1/2.0.0/com/google/api/services/datafusion/v1/model/Instance.java

Lines changed: 54 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public final class Instance extends com.google.api.client.json.GenericJson {
118118
private java.lang.Boolean enableRbac;
119119

120120
/**
121-
* Optional. Option to enable Stackdriver Logging.
121+
* Optional. Option to enable Dataproc Stackdriver Logging.
122122
* The value may be {@code null}.
123123
*/
124124
@com.google.api.client.util.Key
@@ -160,6 +160,14 @@ public final class Instance extends com.google.api.client.json.GenericJson {
160160
@com.google.api.client.util.Key
161161
private java.util.Map<String, java.lang.String> labels;
162162

163+
/**
164+
* Optional. The logging configuration for this instance. This field is supported only in CDF
165+
* versions 6.11.0 and above.
166+
* The value may be {@code null}.
167+
*/
168+
@com.google.api.client.util.Key
169+
private LoggingConfig loggingConfig;
170+
163171
/**
164172
* Output only. The maintenance events for this instance.
165173
* The value may be {@code null}.
@@ -220,6 +228,13 @@ public final class Instance extends com.google.api.client.json.GenericJson {
220228
@com.google.api.client.util.Key
221229
private java.lang.Boolean privateInstance;
222230

231+
/**
232+
* Output only. Reserved for future use.
233+
* The value may be {@code null}.
234+
*/
235+
@com.google.api.client.util.Key
236+
private java.lang.Boolean satisfiesPzi;
237+
223238
/**
224239
* Output only. Reserved for future use.
225240
* The value may be {@code null}.
@@ -495,15 +510,15 @@ public Instance setEnableRbac(java.lang.Boolean enableRbac) {
495510
}
496511

497512
/**
498-
* Optional. Option to enable Stackdriver Logging.
513+
* Optional. Option to enable Dataproc Stackdriver Logging.
499514
* @return value or {@code null} for none
500515
*/
501516
public java.lang.Boolean getEnableStackdriverLogging() {
502517
return enableStackdriverLogging;
503518
}
504519

505520
/**
506-
* Optional. Option to enable Stackdriver Logging.
521+
* Optional. Option to enable Dataproc Stackdriver Logging.
507522
* @param enableStackdriverLogging enableStackdriverLogging or {@code null} for none
508523
*/
509524
public Instance setEnableStackdriverLogging(java.lang.Boolean enableStackdriverLogging) {
@@ -598,6 +613,25 @@ public Instance setLabels(java.util.Map<String, java.lang.String> labels) {
598613
return this;
599614
}
600615

616+
/**
617+
* Optional. The logging configuration for this instance. This field is supported only in CDF
618+
* versions 6.11.0 and above.
619+
* @return value or {@code null} for none
620+
*/
621+
public LoggingConfig getLoggingConfig() {
622+
return loggingConfig;
623+
}
624+
625+
/**
626+
* Optional. The logging configuration for this instance. This field is supported only in CDF
627+
* versions 6.11.0 and above.
628+
* @param loggingConfig loggingConfig or {@code null} for none
629+
*/
630+
public Instance setLoggingConfig(LoggingConfig loggingConfig) {
631+
this.loggingConfig = loggingConfig;
632+
return this;
633+
}
634+
601635
/**
602636
* Output only. The maintenance events for this instance.
603637
* @return value or {@code null} for none
@@ -742,6 +776,23 @@ public Instance setPrivateInstance(java.lang.Boolean privateInstance) {
742776
return this;
743777
}
744778

779+
/**
780+
* Output only. Reserved for future use.
781+
* @return value or {@code null} for none
782+
*/
783+
public java.lang.Boolean getSatisfiesPzi() {
784+
return satisfiesPzi;
785+
}
786+
787+
/**
788+
* Output only. Reserved for future use.
789+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
790+
*/
791+
public Instance setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
792+
this.satisfiesPzi = satisfiesPzi;
793+
return this;
794+
}
795+
745796
/**
746797
* Output only. Reserved for future use.
747798
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.datafusion.v1.model;
18+
19+
/**
20+
* Logging configuration for a Data Fusion instance.
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 Cloud Data Fusion API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class LoggingConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Option to determine whether instance logs should be written to Cloud Logging. By
35+
* default, instance logs are written to Cloud Logging.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Boolean instanceCloudLoggingDisabled;
40+
41+
/**
42+
* Optional. Option to determine whether instance logs should be written to Cloud Logging. By
43+
* default, instance logs are written to Cloud Logging.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.Boolean getInstanceCloudLoggingDisabled() {
47+
return instanceCloudLoggingDisabled;
48+
}
49+
50+
/**
51+
* Optional. Option to determine whether instance logs should be written to Cloud Logging. By
52+
* default, instance logs are written to Cloud Logging.
53+
* @param instanceCloudLoggingDisabled instanceCloudLoggingDisabled or {@code null} for none
54+
*/
55+
public LoggingConfig setInstanceCloudLoggingDisabled(java.lang.Boolean instanceCloudLoggingDisabled) {
56+
this.instanceCloudLoggingDisabled = instanceCloudLoggingDisabled;
57+
return this;
58+
}
59+
60+
@Override
61+
public LoggingConfig set(String fieldName, Object value) {
62+
return (LoggingConfig) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public LoggingConfig clone() {
67+
return (LoggingConfig) super.clone();
68+
}
69+
70+
}

clients/google-api-services-datafusion/v1/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-datafusion</artifactId>
11-
<version>v1-rev20250122-2.0.0</version>
12-
<name>Cloud Data Fusion API v1-rev20250122-2.0.0</name>
11+
<version>v1-rev20250224-2.0.0</version>
12+
<name>Cloud Data Fusion API v1-rev20250224-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Cloud Data Fusion API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

clients/google-api-services-datafusion/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-datafusion</artifactId>
25-
<version>v1-rev20250122-2.0.0</version>
25+
<version>v1-rev20250224-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-datafusion:v1-rev20250122-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1-rev20250224-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datafusion/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-datafusion</artifactId>
25-
<version>v1beta1-rev20250122-2.0.0</version>
25+
<version>v1beta1-rev20250224-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-datafusion:v1beta1-rev20250122-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1beta1-rev20250224-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datafusion/v1beta1/2.0.0/com/google/api/services/datafusion/v1beta1/model/Instance.java

Lines changed: 54 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public final class Instance extends com.google.api.client.json.GenericJson {
118118
private java.lang.Boolean enableRbac;
119119

120120
/**
121-
* Option to enable Stackdriver Logging.
121+
* Option to enable Dataproc Stackdriver Logging.
122122
* The value may be {@code null}.
123123
*/
124124
@com.google.api.client.util.Key
@@ -160,6 +160,14 @@ public final class Instance extends com.google.api.client.json.GenericJson {
160160
@com.google.api.client.util.Key
161161
private java.util.Map<String, java.lang.String> labels;
162162

163+
/**
164+
* Optional. The logging configuration for this instance. This field is supported only in CDF
165+
* versions 6.11.0 and above.
166+
* The value may be {@code null}.
167+
*/
168+
@com.google.api.client.util.Key
169+
private LoggingConfig loggingConfig;
170+
163171
/**
164172
* Output only. The maintenance events for this instance.
165173
* The value may be {@code null}.
@@ -219,6 +227,13 @@ public final class Instance extends com.google.api.client.json.GenericJson {
219227
@com.google.api.client.util.Key
220228
private java.lang.Boolean privateInstance;
221229

230+
/**
231+
* Output only. Reserved for future use.
232+
* The value may be {@code null}.
233+
*/
234+
@com.google.api.client.util.Key
235+
private java.lang.Boolean satisfiesPzi;
236+
222237
/**
223238
* Output only. Reserved for future use.
224239
* The value may be {@code null}.
@@ -494,15 +509,15 @@ public Instance setEnableRbac(java.lang.Boolean enableRbac) {
494509
}
495510

496511
/**
497-
* Option to enable Stackdriver Logging.
512+
* Option to enable Dataproc Stackdriver Logging.
498513
* @return value or {@code null} for none
499514
*/
500515
public java.lang.Boolean getEnableStackdriverLogging() {
501516
return enableStackdriverLogging;
502517
}
503518

504519
/**
505-
* Option to enable Stackdriver Logging.
520+
* Option to enable Dataproc Stackdriver Logging.
506521
* @param enableStackdriverLogging enableStackdriverLogging or {@code null} for none
507522
*/
508523
public Instance setEnableStackdriverLogging(java.lang.Boolean enableStackdriverLogging) {
@@ -597,6 +612,25 @@ public Instance setLabels(java.util.Map<String, java.lang.String> labels) {
597612
return this;
598613
}
599614

615+
/**
616+
* Optional. The logging configuration for this instance. This field is supported only in CDF
617+
* versions 6.11.0 and above.
618+
* @return value or {@code null} for none
619+
*/
620+
public LoggingConfig getLoggingConfig() {
621+
return loggingConfig;
622+
}
623+
624+
/**
625+
* Optional. The logging configuration for this instance. This field is supported only in CDF
626+
* versions 6.11.0 and above.
627+
* @param loggingConfig loggingConfig or {@code null} for none
628+
*/
629+
public Instance setLoggingConfig(LoggingConfig loggingConfig) {
630+
this.loggingConfig = loggingConfig;
631+
return this;
632+
}
633+
600634
/**
601635
* Output only. The maintenance events for this instance.
602636
* @return value or {@code null} for none
@@ -739,6 +773,23 @@ public Instance setPrivateInstance(java.lang.Boolean privateInstance) {
739773
return this;
740774
}
741775

776+
/**
777+
* Output only. Reserved for future use.
778+
* @return value or {@code null} for none
779+
*/
780+
public java.lang.Boolean getSatisfiesPzi() {
781+
return satisfiesPzi;
782+
}
783+
784+
/**
785+
* Output only. Reserved for future use.
786+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
787+
*/
788+
public Instance setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
789+
this.satisfiesPzi = satisfiesPzi;
790+
return this;
791+
}
792+
742793
/**
743794
* Output only. Reserved for future use.
744795
* @return value or {@code null} for none

0 commit comments

Comments
 (0)