Skip to content

Commit 7497f10

Browse files
1 parent 6ab5d21 commit 7497f10

File tree

5 files changed

+130
-6
lines changed

5 files changed

+130
-6
lines changed

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

clients/google-api-services-versionhistory/v1/2.0.0/com/google/api/services/versionhistory/v1/model/Release.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ public final class Release extends com.google.api.client.json.GenericJson {
6565
@com.google.api.client.util.Key
6666
private java.lang.Boolean pinnable;
6767

68+
/**
69+
* Rollout-related metadata. Some releases are part of one or more A/B rollouts. This field
70+
* contains the names and data describing this release's role in any rollouts.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.util.List<RolloutData> rolloutData;
75+
6876
/**
6977
* Timestamp interval of when the release was live. If end_time is unspecified, the release is
7078
* currently live.
@@ -156,6 +164,25 @@ public Release setPinnable(java.lang.Boolean pinnable) {
156164
return this;
157165
}
158166

167+
/**
168+
* Rollout-related metadata. Some releases are part of one or more A/B rollouts. This field
169+
* contains the names and data describing this release's role in any rollouts.
170+
* @return value or {@code null} for none
171+
*/
172+
public java.util.List<RolloutData> getRolloutData() {
173+
return rolloutData;
174+
}
175+
176+
/**
177+
* Rollout-related metadata. Some releases are part of one or more A/B rollouts. This field
178+
* contains the names and data describing this release's role in any rollouts.
179+
* @param rolloutData rolloutData or {@code null} for none
180+
*/
181+
public Release setRolloutData(java.util.List<RolloutData> rolloutData) {
182+
this.rolloutData = rolloutData;
183+
return this;
184+
}
185+
159186
/**
160187
* Timestamp interval of when the release was live. If end_time is unspecified, the release is
161188
* currently live.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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.versionhistory.v1.model;
18+
19+
/**
20+
* Rollout-related metadata for a release.
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 versionhistory.googleapis.com API. For a detailed
24+
* explanation 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 RolloutData extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The name of the rollout.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String rolloutName;
39+
40+
/**
41+
* Tags associated with a release's role in a rollout. Most rollouts will have at least one
42+
* release with a "rollout" tag and another release with a "control" tag. Some rollouts may have
43+
* additional named arms.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.List<java.lang.String> tag;
48+
49+
/**
50+
* The name of the rollout.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getRolloutName() {
54+
return rolloutName;
55+
}
56+
57+
/**
58+
* The name of the rollout.
59+
* @param rolloutName rolloutName or {@code null} for none
60+
*/
61+
public RolloutData setRolloutName(java.lang.String rolloutName) {
62+
this.rolloutName = rolloutName;
63+
return this;
64+
}
65+
66+
/**
67+
* Tags associated with a release's role in a rollout. Most rollouts will have at least one
68+
* release with a "rollout" tag and another release with a "control" tag. Some rollouts may have
69+
* additional named arms.
70+
* @return value or {@code null} for none
71+
*/
72+
public java.util.List<java.lang.String> getTag() {
73+
return tag;
74+
}
75+
76+
/**
77+
* Tags associated with a release's role in a rollout. Most rollouts will have at least one
78+
* release with a "rollout" tag and another release with a "control" tag. Some rollouts may have
79+
* additional named arms.
80+
* @param tag tag or {@code null} for none
81+
*/
82+
public RolloutData setTag(java.util.List<java.lang.String> tag) {
83+
this.tag = tag;
84+
return this;
85+
}
86+
87+
@Override
88+
public RolloutData set(String fieldName, Object value) {
89+
return (RolloutData) super.set(fieldName, value);
90+
}
91+
92+
@Override
93+
public RolloutData clone() {
94+
return (RolloutData) super.clone();
95+
}
96+
97+
}

clients/google-api-services-versionhistory/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-versionhistory</artifactId>
11-
<version>v1-rev20250601-2.0.0</version>
12-
<name>versionhistory.googleapis.com API v1-rev20250601-2.0.0</name>
11+
<version>v1-rev20250810-2.0.0</version>
12+
<name>versionhistory.googleapis.com API v1-rev20250810-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)