Skip to content

Commit 54eae31

Browse files
1 parent 58fc33a commit 54eae31

File tree

27 files changed

+176
-74
lines changed

27 files changed

+176
-74
lines changed

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

clients/google-api-services-gkehub/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-gkehub</artifactId>
11-
<version>v1-rev20260226-2.0.0</version>
12-
<name>GKE Hub API v1-rev20260226-2.0.0</name>
11+
<version>v1-rev20260313-2.0.0</version>
12+
<name>GKE Hub API v1-rev20260313-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/Rollout.java

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.gkehub.v1alpha.model;
1818

1919
/**
20-
* Rollout contains the Rollout metadata and configuration.
20+
* Rollout contains the Rollout metadata and configuration. Next ID: 28
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the GKE Hub API. For a detailed explanation see:
@@ -118,6 +118,13 @@ public final class Rollout extends com.google.api.client.json.GenericJson {
118118
@com.google.api.client.util.Key
119119
private java.lang.String stateReason;
120120

121+
/**
122+
* Output only. StateReasonType specifies the reason type of the Rollout state.
123+
* The value may be {@code null}.
124+
*/
125+
@com.google.api.client.util.Key
126+
private java.lang.String stateReasonType;
127+
121128
/**
122129
* Output only. Google-generated UUID for this resource. This is unique across all Rollout
123130
* resources. If a Rollout resource is deleted and another resource with the same name is created,
@@ -355,6 +362,23 @@ public Rollout setStateReason(java.lang.String stateReason) {
355362
return this;
356363
}
357364

365+
/**
366+
* Output only. StateReasonType specifies the reason type of the Rollout state.
367+
* @return value or {@code null} for none
368+
*/
369+
public java.lang.String getStateReasonType() {
370+
return stateReasonType;
371+
}
372+
373+
/**
374+
* Output only. StateReasonType specifies the reason type of the Rollout state.
375+
* @param stateReasonType stateReasonType or {@code null} for none
376+
*/
377+
public Rollout setStateReasonType(java.lang.String stateReasonType) {
378+
this.stateReasonType = stateReasonType;
379+
return this;
380+
}
381+
358382
/**
359383
* Output only. Google-generated UUID for this resource. This is unique across all Rollout
360384
* resources. If a Rollout resource is deleted and another resource with the same name is created,

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/RolloutSequenceState.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class RolloutSequenceState extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. The timestamp at which the LifecycleState was last changed. Used to track how long
34+
* it has been in the current state.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String lastStateChangeTime;
39+
3240
/**
3341
* Output only. Lifecycle state of the Rollout Sequence.
3442
* The value may be {@code null}.
@@ -43,6 +51,25 @@ public final class RolloutSequenceState extends com.google.api.client.json.Gener
4351
@com.google.api.client.util.Key
4452
private java.util.List<java.lang.String> stateReasons;
4553

54+
/**
55+
* Output only. The timestamp at which the LifecycleState was last changed. Used to track how long
56+
* it has been in the current state.
57+
* @return value or {@code null} for none
58+
*/
59+
public String getLastStateChangeTime() {
60+
return lastStateChangeTime;
61+
}
62+
63+
/**
64+
* Output only. The timestamp at which the LifecycleState was last changed. Used to track how long
65+
* it has been in the current state.
66+
* @param lastStateChangeTime lastStateChangeTime or {@code null} for none
67+
*/
68+
public RolloutSequenceState setLastStateChangeTime(String lastStateChangeTime) {
69+
this.lastStateChangeTime = lastStateChangeTime;
70+
return this;
71+
}
72+
4673
/**
4774
* Output only. Lifecycle state of the Rollout Sequence.
4875
* @return value or {@code null} for none

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/RolloutStage.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,50 +30,50 @@
3030
public final class RolloutStage extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. Output only. The time at which the wave ended.
33+
* Optional. Output only. The time at which the stage ended.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private String endTime;
3838

3939
/**
40-
* Optional. Duration to soak after this wave before starting the next wave.
40+
* Optional. Duration to soak after this stage before starting the next stage.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
4444
private String soakDuration;
4545

4646
/**
47-
* Output only. The wave number to which this status applies.
47+
* Output only. The stage number to which this status applies.
4848
* The value may be {@code null}.
4949
*/
5050
@com.google.api.client.util.Key
5151
private java.lang.Integer stageNumber;
5252

5353
/**
54-
* Optional. Output only. The time at which the wave started.
54+
* Optional. Output only. The time at which the stage started.
5555
* The value may be {@code null}.
5656
*/
5757
@com.google.api.client.util.Key
5858
private String startTime;
5959

6060
/**
61-
* Output only. The state of the wave.
61+
* Output only. The state of the stage.
6262
* The value may be {@code null}.
6363
*/
6464
@com.google.api.client.util.Key
6565
private java.lang.String state;
6666

6767
/**
68-
* Optional. Output only. The time at which the wave ended.
68+
* Optional. Output only. The time at which the stage ended.
6969
* @return value or {@code null} for none
7070
*/
7171
public String getEndTime() {
7272
return endTime;
7373
}
7474

7575
/**
76-
* Optional. Output only. The time at which the wave ended.
76+
* Optional. Output only. The time at which the stage ended.
7777
* @param endTime endTime or {@code null} for none
7878
*/
7979
public RolloutStage setEndTime(String endTime) {
@@ -82,15 +82,15 @@ public RolloutStage setEndTime(String endTime) {
8282
}
8383

8484
/**
85-
* Optional. Duration to soak after this wave before starting the next wave.
85+
* Optional. Duration to soak after this stage before starting the next stage.
8686
* @return value or {@code null} for none
8787
*/
8888
public String getSoakDuration() {
8989
return soakDuration;
9090
}
9191

9292
/**
93-
* Optional. Duration to soak after this wave before starting the next wave.
93+
* Optional. Duration to soak after this stage before starting the next stage.
9494
* @param soakDuration soakDuration or {@code null} for none
9595
*/
9696
public RolloutStage setSoakDuration(String soakDuration) {
@@ -99,15 +99,15 @@ public RolloutStage setSoakDuration(String soakDuration) {
9999
}
100100

101101
/**
102-
* Output only. The wave number to which this status applies.
102+
* Output only. The stage number to which this status applies.
103103
* @return value or {@code null} for none
104104
*/
105105
public java.lang.Integer getStageNumber() {
106106
return stageNumber;
107107
}
108108

109109
/**
110-
* Output only. The wave number to which this status applies.
110+
* Output only. The stage number to which this status applies.
111111
* @param stageNumber stageNumber or {@code null} for none
112112
*/
113113
public RolloutStage setStageNumber(java.lang.Integer stageNumber) {
@@ -116,15 +116,15 @@ public RolloutStage setStageNumber(java.lang.Integer stageNumber) {
116116
}
117117

118118
/**
119-
* Optional. Output only. The time at which the wave started.
119+
* Optional. Output only. The time at which the stage started.
120120
* @return value or {@code null} for none
121121
*/
122122
public String getStartTime() {
123123
return startTime;
124124
}
125125

126126
/**
127-
* Optional. Output only. The time at which the wave started.
127+
* Optional. Output only. The time at which the stage started.
128128
* @param startTime startTime or {@code null} for none
129129
*/
130130
public RolloutStage setStartTime(String startTime) {
@@ -133,15 +133,15 @@ public RolloutStage setStartTime(String startTime) {
133133
}
134134

135135
/**
136-
* Output only. The state of the wave.
136+
* Output only. The state of the stage.
137137
* @return value or {@code null} for none
138138
*/
139139
public java.lang.String getState() {
140140
return state;
141141
}
142142

143143
/**
144-
* Output only. The state of the wave.
144+
* Output only. The state of the stage.
145145
* @param state state or {@code null} for none
146146
*/
147147
public RolloutStage setState(java.lang.String state) {

clients/google-api-services-gkehub/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-gkehub</artifactId>
11-
<version>v1alpha-rev20260226-2.0.0</version>
12-
<name>GKE Hub API v1alpha-rev20260226-2.0.0</name>
11+
<version>v1alpha-rev20260313-2.0.0</version>
12+
<name>GKE Hub API v1alpha-rev20260313-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

0 commit comments

Comments
 (0)