Skip to content

Commit 322db61

Browse files
1 parent 52934e6 commit 322db61

File tree

13 files changed

+192
-36
lines changed

13 files changed

+192
-36
lines changed

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

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/Cluster.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,20 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
248248
@com.google.api.client.util.Key
249249
private java.lang.String state;
250250

251+
/**
252+
* Optional. Subscription type of the cluster.
253+
* The value may be {@code null}.
254+
*/
255+
@com.google.api.client.util.Key
256+
private java.lang.String subscriptionType;
257+
258+
/**
259+
* Output only. Metadata for free trial clusters
260+
* The value may be {@code null}.
261+
*/
262+
@com.google.api.client.util.Key
263+
private TrialMetadata trialMetadata;
264+
251265
/**
252266
* Output only. The system-generated UID of the resource. The UID is assigned when the resource is
253267
* created, and it is retained until it is deleted.
@@ -781,6 +795,40 @@ public Cluster setState(java.lang.String state) {
781795
return this;
782796
}
783797

798+
/**
799+
* Optional. Subscription type of the cluster.
800+
* @return value or {@code null} for none
801+
*/
802+
public java.lang.String getSubscriptionType() {
803+
return subscriptionType;
804+
}
805+
806+
/**
807+
* Optional. Subscription type of the cluster.
808+
* @param subscriptionType subscriptionType or {@code null} for none
809+
*/
810+
public Cluster setSubscriptionType(java.lang.String subscriptionType) {
811+
this.subscriptionType = subscriptionType;
812+
return this;
813+
}
814+
815+
/**
816+
* Output only. Metadata for free trial clusters
817+
* @return value or {@code null} for none
818+
*/
819+
public TrialMetadata getTrialMetadata() {
820+
return trialMetadata;
821+
}
822+
823+
/**
824+
* Output only. Metadata for free trial clusters
825+
* @param trialMetadata trialMetadata or {@code null} for none
826+
*/
827+
public Cluster setTrialMetadata(TrialMetadata trialMetadata) {
828+
this.trialMetadata = trialMetadata;
829+
return this;
830+
}
831+
784832
/**
785833
* Output only. The system-generated UID of the resource. The UID is assigned when the resource is
786834
* created, and it is retained until it is deleted.
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.alloydb.v1.model;
18+
19+
/**
20+
* Contains information and all metadata related to TRIAL clusters.
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 AlloyDB 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 TrialMetadata extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* End time of the trial cluster.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String endTime;
38+
39+
/**
40+
* start time of the trial cluster.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String startTime;
45+
46+
/**
47+
* Upgrade time of trial cluster to Standard cluster.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private String upgradeTime;
52+
53+
/**
54+
* End time of the trial cluster.
55+
* @return value or {@code null} for none
56+
*/
57+
public String getEndTime() {
58+
return endTime;
59+
}
60+
61+
/**
62+
* End time of the trial cluster.
63+
* @param endTime endTime or {@code null} for none
64+
*/
65+
public TrialMetadata setEndTime(String endTime) {
66+
this.endTime = endTime;
67+
return this;
68+
}
69+
70+
/**
71+
* start time of the trial cluster.
72+
* @return value or {@code null} for none
73+
*/
74+
public String getStartTime() {
75+
return startTime;
76+
}
77+
78+
/**
79+
* start time of the trial cluster.
80+
* @param startTime startTime or {@code null} for none
81+
*/
82+
public TrialMetadata setStartTime(String startTime) {
83+
this.startTime = startTime;
84+
return this;
85+
}
86+
87+
/**
88+
* Upgrade time of trial cluster to Standard cluster.
89+
* @return value or {@code null} for none
90+
*/
91+
public String getUpgradeTime() {
92+
return upgradeTime;
93+
}
94+
95+
/**
96+
* Upgrade time of trial cluster to Standard cluster.
97+
* @param upgradeTime upgradeTime or {@code null} for none
98+
*/
99+
public TrialMetadata setUpgradeTime(String upgradeTime) {
100+
this.upgradeTime = upgradeTime;
101+
return this;
102+
}
103+
104+
@Override
105+
public TrialMetadata set(String fieldName, Object value) {
106+
return (TrialMetadata) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public TrialMetadata clone() {
111+
return (TrialMetadata) super.clone();
112+
}
113+
114+
}

clients/google-api-services-alloydb/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-alloydb</artifactId>
11-
<version>v1-rev20240612-2.0.0</version>
12-
<name>AlloyDB API v1-rev20240612-2.0.0</name>
11+
<version>v1-rev20240627-2.0.0</version>
12+
<name>AlloyDB API v1-rev20240627-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-alloydb/v1alpha/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-alloydb</artifactId>
25-
<version>v1alpha-rev20240612-2.0.0</version>
25+
<version>v1alpha-rev20240627-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-alloydb:v1alpha-rev20240612-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20240627-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/ObservabilityInstanceConfig.java

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
public final class ObservabilityInstanceConfig extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Observability feature status for an instance. This is a read-only flag and modifiable only by
34-
* producer API. This flag is turned "off" by default.
33+
* Observability feature status for an instance. This flag is turned "off" by default.
3534
* The value may be {@code null}.
3635
*/
3736
@com.google.api.client.util.Key
@@ -53,7 +52,7 @@ public final class ObservabilityInstanceConfig extends com.google.api.client.jso
5352

5453
/**
5554
* Number of query execution plans captured by Insights per minute for all queries combined. The
56-
* default value is 5. Any integer between 0 to 20 is considered valid.
55+
* default value is 200. Any integer between 0 to 200 is considered valid.
5756
* The value may be {@code null}.
5857
*/
5958
@com.google.api.client.util.Key
@@ -91,17 +90,15 @@ public final class ObservabilityInstanceConfig extends com.google.api.client.jso
9190
private java.lang.Boolean trackWaitEvents;
9291

9392
/**
94-
* Observability feature status for an instance. This is a read-only flag and modifiable only by
95-
* producer API. This flag is turned "off" by default.
93+
* Observability feature status for an instance. This flag is turned "off" by default.
9694
* @return value or {@code null} for none
9795
*/
9896
public java.lang.Boolean getEnabled() {
9997
return enabled;
10098
}
10199

102100
/**
103-
* Observability feature status for an instance. This is a read-only flag and modifiable only by
104-
* producer API. This flag is turned "off" by default.
101+
* Observability feature status for an instance. This flag is turned "off" by default.
105102
* @param enabled enabled or {@code null} for none
106103
*/
107104
public ObservabilityInstanceConfig setEnabled(java.lang.Boolean enabled) {
@@ -145,7 +142,7 @@ public ObservabilityInstanceConfig setPreserveComments(java.lang.Boolean preserv
145142

146143
/**
147144
* Number of query execution plans captured by Insights per minute for all queries combined. The
148-
* default value is 5. Any integer between 0 to 20 is considered valid.
145+
* default value is 200. Any integer between 0 to 200 is considered valid.
149146
* @return value or {@code null} for none
150147
*/
151148
public java.lang.Integer getQueryPlansPerMinute() {
@@ -154,7 +151,7 @@ public java.lang.Integer getQueryPlansPerMinute() {
154151

155152
/**
156153
* Number of query execution plans captured by Insights per minute for all queries combined. The
157-
* default value is 5. Any integer between 0 to 20 is considered valid.
154+
* default value is 200. Any integer between 0 to 200 is considered valid.
158155
* @param queryPlansPerMinute queryPlansPerMinute or {@code null} for none
159156
*/
160157
public ObservabilityInstanceConfig setQueryPlansPerMinute(java.lang.Integer queryPlansPerMinute) {

clients/google-api-services-alloydb/v1alpha/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-alloydb</artifactId>
11-
<version>v1alpha-rev20240612-2.0.0</version>
12-
<name>AlloyDB API v1alpha-rev20240612-2.0.0</name>
11+
<version>v1alpha-rev20240627-2.0.0</version>
12+
<name>AlloyDB API v1alpha-rev20240627-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-alloydb/v1alpha/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-alloydb</artifactId>
25-
<version>v1alpha-rev20240612-2.0.0</version>
25+
<version>v1alpha-rev20240627-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-alloydb:v1alpha-rev20240612-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20240627-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1beta/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-alloydb</artifactId>
25-
<version>v1beta-rev20240612-2.0.0</version>
25+
<version>v1beta-rev20240627-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-alloydb:v1beta-rev20240612-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1beta-rev20240627-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)