Skip to content

Commit f66c8ee

Browse files
1 parent c857d43 commit f66c8ee

File tree

10 files changed

+308
-12
lines changed

10 files changed

+308
-12
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-rev20250117-2.0.0</version>
25+
<version>v1-rev20250122-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-rev20250117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1-rev20250122-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,13 @@ 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+
* Output only. The maintenance events for this instance.
165+
* The value may be {@code null}.
166+
*/
167+
@com.google.api.client.util.Key
168+
private java.util.List<MaintenanceEvent> maintenanceEvents;
169+
163170
/**
164171
* Optional. Configure the maintenance policy for this instance.
165172
* The value may be {@code null}.
@@ -591,6 +598,23 @@ public Instance setLabels(java.util.Map<String, java.lang.String> labels) {
591598
return this;
592599
}
593600

601+
/**
602+
* Output only. The maintenance events for this instance.
603+
* @return value or {@code null} for none
604+
*/
605+
public java.util.List<MaintenanceEvent> getMaintenanceEvents() {
606+
return maintenanceEvents;
607+
}
608+
609+
/**
610+
* Output only. The maintenance events for this instance.
611+
* @param maintenanceEvents maintenanceEvents or {@code null} for none
612+
*/
613+
public Instance setMaintenanceEvents(java.util.List<MaintenanceEvent> maintenanceEvents) {
614+
this.maintenanceEvents = maintenanceEvents;
615+
return this;
616+
}
617+
594618
/**
595619
* Optional. Configure the maintenance policy for this instance.
596620
* @return value or {@code null} for none
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
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+
* Represents a maintenance event.
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 MaintenanceEvent extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The end time of the maintenance event provided in [RFC
35+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:00" This
36+
* field will be empty if the maintenance event is not yet complete.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private String endTime;
41+
42+
/**
43+
* Output only. The start time of the maintenance event provided in [RFC
44+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private String startTime;
49+
50+
/**
51+
* Output only. The state of the maintenance event.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String state;
56+
57+
/**
58+
* Output only. The end time of the maintenance event provided in [RFC
59+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:00" This
60+
* field will be empty if the maintenance event is not yet complete.
61+
* @return value or {@code null} for none
62+
*/
63+
public String getEndTime() {
64+
return endTime;
65+
}
66+
67+
/**
68+
* Output only. The end time of the maintenance event provided in [RFC
69+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:00" This
70+
* field will be empty if the maintenance event is not yet complete.
71+
* @param endTime endTime or {@code null} for none
72+
*/
73+
public MaintenanceEvent setEndTime(String endTime) {
74+
this.endTime = endTime;
75+
return this;
76+
}
77+
78+
/**
79+
* Output only. The start time of the maintenance event provided in [RFC
80+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
81+
* @return value or {@code null} for none
82+
*/
83+
public String getStartTime() {
84+
return startTime;
85+
}
86+
87+
/**
88+
* Output only. The start time of the maintenance event provided in [RFC
89+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
90+
* @param startTime startTime or {@code null} for none
91+
*/
92+
public MaintenanceEvent setStartTime(String startTime) {
93+
this.startTime = startTime;
94+
return this;
95+
}
96+
97+
/**
98+
* Output only. The state of the maintenance event.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.String getState() {
102+
return state;
103+
}
104+
105+
/**
106+
* Output only. The state of the maintenance event.
107+
* @param state state or {@code null} for none
108+
*/
109+
public MaintenanceEvent setState(java.lang.String state) {
110+
this.state = state;
111+
return this;
112+
}
113+
114+
@Override
115+
public MaintenanceEvent set(String fieldName, Object value) {
116+
return (MaintenanceEvent) super.set(fieldName, value);
117+
}
118+
119+
@Override
120+
public MaintenanceEvent clone() {
121+
return (MaintenanceEvent) super.clone();
122+
}
123+
124+
}

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

1515
<inceptionYear>2011</inceptionYear>

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-rev20250117-2.0.0</version>
25+
<version>v1-rev20250122-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-rev20250117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1-rev20250122-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-rev20241204-2.0.0</version>
25+
<version>v1beta1-rev20250122-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-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1beta1-rev20250122-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,13 @@ 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+
* Output only. The maintenance events for this instance.
165+
* The value may be {@code null}.
166+
*/
167+
@com.google.api.client.util.Key
168+
private java.util.List<MaintenanceEvent> maintenanceEvents;
169+
163170
/**
164171
* Optional. Configure the maintenance policy for this instance.
165172
* The value may be {@code null}.
@@ -590,6 +597,23 @@ public Instance setLabels(java.util.Map<String, java.lang.String> labels) {
590597
return this;
591598
}
592599

600+
/**
601+
* Output only. The maintenance events for this instance.
602+
* @return value or {@code null} for none
603+
*/
604+
public java.util.List<MaintenanceEvent> getMaintenanceEvents() {
605+
return maintenanceEvents;
606+
}
607+
608+
/**
609+
* Output only. The maintenance events for this instance.
610+
* @param maintenanceEvents maintenanceEvents or {@code null} for none
611+
*/
612+
public Instance setMaintenanceEvents(java.util.List<MaintenanceEvent> maintenanceEvents) {
613+
this.maintenanceEvents = maintenanceEvents;
614+
return this;
615+
}
616+
593617
/**
594618
* Optional. Configure the maintenance policy for this instance.
595619
* @return value or {@code null} for none
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
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.v1beta1.model;
18+
19+
/**
20+
* Represents a maintenance event.
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 MaintenanceEvent extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The end time of the maintenance event provided in [RFC
35+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:00" This
36+
* field will be empty if the maintenance event is not yet complete.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private String endTime;
41+
42+
/**
43+
* Output only. The start time of the maintenance event provided in [RFC
44+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private String startTime;
49+
50+
/**
51+
* Output only. The state of the maintenance event.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String state;
56+
57+
/**
58+
* Output only. The end time of the maintenance event provided in [RFC
59+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:00" This
60+
* field will be empty if the maintenance event is not yet complete.
61+
* @return value or {@code null} for none
62+
*/
63+
public String getEndTime() {
64+
return endTime;
65+
}
66+
67+
/**
68+
* Output only. The end time of the maintenance event provided in [RFC
69+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:00" This
70+
* field will be empty if the maintenance event is not yet complete.
71+
* @param endTime endTime or {@code null} for none
72+
*/
73+
public MaintenanceEvent setEndTime(String endTime) {
74+
this.endTime = endTime;
75+
return this;
76+
}
77+
78+
/**
79+
* Output only. The start time of the maintenance event provided in [RFC
80+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
81+
* @return value or {@code null} for none
82+
*/
83+
public String getStartTime() {
84+
return startTime;
85+
}
86+
87+
/**
88+
* Output only. The start time of the maintenance event provided in [RFC
89+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
90+
* @param startTime startTime or {@code null} for none
91+
*/
92+
public MaintenanceEvent setStartTime(String startTime) {
93+
this.startTime = startTime;
94+
return this;
95+
}
96+
97+
/**
98+
* Output only. The state of the maintenance event.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.String getState() {
102+
return state;
103+
}
104+
105+
/**
106+
* Output only. The state of the maintenance event.
107+
* @param state state or {@code null} for none
108+
*/
109+
public MaintenanceEvent setState(java.lang.String state) {
110+
this.state = state;
111+
return this;
112+
}
113+
114+
@Override
115+
public MaintenanceEvent set(String fieldName, Object value) {
116+
return (MaintenanceEvent) super.set(fieldName, value);
117+
}
118+
119+
@Override
120+
public MaintenanceEvent clone() {
121+
return (MaintenanceEvent) super.clone();
122+
}
123+
124+
}

0 commit comments

Comments
 (0)