Skip to content

Commit 3e733de

Browse files
1 parent a756f5a commit 3e733de

File tree

7 files changed

+40
-57
lines changed

7 files changed

+40
-57
lines changed

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

clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/BackupforGKE.java

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2990,29 +2990,6 @@ public List setPageToken(java.lang.String pageToken) {
29902990
return this;
29912991
}
29922992

2993-
/**
2994-
* Optional. If set to true, the response will return partial results when some regions
2995-
* are unreachable and the unreachable field will be populated.
2996-
*/
2997-
@com.google.api.client.util.Key
2998-
private java.lang.Boolean returnPartialSuccess;
2999-
3000-
/** Optional. If set to true, the response will return partial results when some regions are
3001-
unreachable and the unreachable field will be populated.
3002-
*/
3003-
public java.lang.Boolean getReturnPartialSuccess() {
3004-
return returnPartialSuccess;
3005-
}
3006-
3007-
/**
3008-
* Optional. If set to true, the response will return partial results when some regions
3009-
* are unreachable and the unreachable field will be populated.
3010-
*/
3011-
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
3012-
this.returnPartialSuccess = returnPartialSuccess;
3013-
return this;
3014-
}
3015-
30162993
@Override
30172994
public List set(String parameterName, Object value) {
30182995
return (List) super.set(parameterName, value);

clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/BackupPlan.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,15 @@ public final class BackupPlan extends com.google.api.client.json.GenericJson {
9595
@com.google.api.client.util.Key
9696
private java.util.Map<String, java.lang.String> labels;
9797

98+
/**
99+
* Output only. Completion time of the last successful Backup. This is sourced from a successful
100+
* Backup's complete_time field. This field is added to maintain consistency with
101+
* BackupPlanBinding to display last successful backup time.
102+
* The value may be {@code null}.
103+
*/
104+
@com.google.api.client.util.Key
105+
private String lastSuccessfulBackupTime;
106+
98107
/**
99108
* Output only. The full name of the BackupPlan resource. Format: `projects/locations/backupPlans`
100109
* The value may be {@code null}.
@@ -322,6 +331,27 @@ public BackupPlan setLabels(java.util.Map<String, java.lang.String> labels) {
322331
return this;
323332
}
324333

334+
/**
335+
* Output only. Completion time of the last successful Backup. This is sourced from a successful
336+
* Backup's complete_time field. This field is added to maintain consistency with
337+
* BackupPlanBinding to display last successful backup time.
338+
* @return value or {@code null} for none
339+
*/
340+
public String getLastSuccessfulBackupTime() {
341+
return lastSuccessfulBackupTime;
342+
}
343+
344+
/**
345+
* Output only. Completion time of the last successful Backup. This is sourced from a successful
346+
* Backup's complete_time field. This field is added to maintain consistency with
347+
* BackupPlanBinding to display last successful backup time.
348+
* @param lastSuccessfulBackupTime lastSuccessfulBackupTime or {@code null} for none
349+
*/
350+
public BackupPlan setLastSuccessfulBackupTime(String lastSuccessfulBackupTime) {
351+
this.lastSuccessfulBackupTime = lastSuccessfulBackupTime;
352+
return this;
353+
}
354+
325355
/**
326356
* Output only. The full name of the BackupPlan resource. Format: `projects/locations/backupPlans`
327357
* @return value or {@code null} for none

clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/ListBackupsResponse.java

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,6 @@ public final class ListBackupsResponse extends com.google.api.client.json.Generi
5050
@com.google.api.client.util.Key
5151
private java.lang.String nextPageToken;
5252

53-
/**
54-
* Locations that could not be reached.
55-
* The value may be {@code null}.
56-
*/
57-
@com.google.api.client.util.Key
58-
private java.util.List<java.lang.String> unreachable;
59-
6053
/**
6154
* The list of Backups matching the given criteria.
6255
* @return value or {@code null} for none
@@ -93,23 +86,6 @@ public ListBackupsResponse setNextPageToken(java.lang.String nextPageToken) {
9386
return this;
9487
}
9588

96-
/**
97-
* Locations that could not be reached.
98-
* @return value or {@code null} for none
99-
*/
100-
public java.util.List<java.lang.String> getUnreachable() {
101-
return unreachable;
102-
}
103-
104-
/**
105-
* Locations that could not be reached.
106-
* @param unreachable unreachable or {@code null} for none
107-
*/
108-
public ListBackupsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
109-
this.unreachable = unreachable;
110-
return this;
111-
}
112-
11389
@Override
11490
public ListBackupsResponse set(String fieldName, Object value) {
11591
return (ListBackupsResponse) super.set(fieldName, value);

clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/Restore.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public final class Restore extends com.google.api.client.json.GenericJson {
8484
/**
8585
* Optional. Immutable. Filters resources for `Restore`. If not specified, the scope of the
8686
* restore will remain the same as defined in the `RestorePlan`. If this is specified and no
87-
* resources are matched by the `inclusion_filters` or everyting is excluded by the
87+
* resources are matched by the `inclusion_filters` or everything is excluded by the
8888
* `exclusion_filters`, nothing will be restored. This filter can only be specified if the value
8989
* of namespaced_resource_restore_mode is set to `MERGE_SKIP_ON_CONFLICT`,
9090
* `MERGE_REPLACE_VOLUME_ON_CONFLICT` or `MERGE_REPLACE_ON_CONFLICT`.
@@ -305,7 +305,7 @@ public Restore setEtag(java.lang.String etag) {
305305
/**
306306
* Optional. Immutable. Filters resources for `Restore`. If not specified, the scope of the
307307
* restore will remain the same as defined in the `RestorePlan`. If this is specified and no
308-
* resources are matched by the `inclusion_filters` or everyting is excluded by the
308+
* resources are matched by the `inclusion_filters` or everything is excluded by the
309309
* `exclusion_filters`, nothing will be restored. This filter can only be specified if the value
310310
* of namespaced_resource_restore_mode is set to `MERGE_SKIP_ON_CONFLICT`,
311311
* `MERGE_REPLACE_VOLUME_ON_CONFLICT` or `MERGE_REPLACE_ON_CONFLICT`.
@@ -318,7 +318,7 @@ public Filter getFilter() {
318318
/**
319319
* Optional. Immutable. Filters resources for `Restore`. If not specified, the scope of the
320320
* restore will remain the same as defined in the `RestorePlan`. If this is specified and no
321-
* resources are matched by the `inclusion_filters` or everyting is excluded by the
321+
* resources are matched by the `inclusion_filters` or everything is excluded by the
322322
* `exclusion_filters`, nothing will be restored. This filter can only be specified if the value
323323
* of namespaced_resource_restore_mode is set to `MERGE_SKIP_ON_CONFLICT`,
324324
* `MERGE_REPLACE_VOLUME_ON_CONFLICT` or `MERGE_REPLACE_ON_CONFLICT`.

clients/google-api-services-gkebackup/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-gkebackup</artifactId>
11-
<version>v1-rev20250205-2.0.0</version>
12-
<name>Backup for GKE API v1-rev20250205-2.0.0</name>
11+
<version>v1-rev20250226-2.0.0</version>
12+
<name>Backup for GKE API v1-rev20250226-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Backup for GKE 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-gkebackup/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-gkebackup</artifactId>
25-
<version>v1-rev20250205-2.0.0</version>
25+
<version>v1-rev20250226-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-gkebackup:v1-rev20250205-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20250226-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)