File tree Expand file tree Collapse file tree 5 files changed +54
-7
lines changed
clients/google-api-services-gkebackup/v1
com/google/api/services/gkebackup/v1 Expand file tree Collapse file tree 5 files changed +54
-7
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-gkebackup</artifactId >
25
- <version >v1-rev20250122 -2.0.0</version >
25
+ <version >v1-rev20250205 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20250122 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20250205 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -2990,6 +2990,29 @@ public List setPageToken(java.lang.String pageToken) {
2990
2990
return this ;
2991
2991
}
2992
2992
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
+
2993
3016
@ Override
2994
3017
public List set (String parameterName , Object value ) {
2995
3018
return (List ) super .set (parameterName , value );
Original file line number Diff line number Diff line change @@ -50,6 +50,13 @@ public final class ListBackupsResponse extends com.google.api.client.json.Generi
50
50
@ com .google .api .client .util .Key
51
51
private java .lang .String nextPageToken ;
52
52
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
+
53
60
/**
54
61
* The list of Backups matching the given criteria.
55
62
* @return value or {@code null} for none
@@ -86,6 +93,23 @@ public ListBackupsResponse setNextPageToken(java.lang.String nextPageToken) {
86
93
return this ;
87
94
}
88
95
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
+
89
113
@ Override
90
114
public ListBackupsResponse set (String fieldName , Object value ) {
91
115
return (ListBackupsResponse ) super .set (fieldName , value );
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<artifactId >google-api-services-gkebackup</artifactId >
11
- <version >v1-rev20250122 -2.0.0</version >
12
- <name >Backup for GKE API v1-rev20250122 -2.0.0</name >
11
+ <version >v1-rev20250205 -2.0.0</version >
12
+ <name >Backup for GKE API v1-rev20250205 -2.0.0</name >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
91
91
<links >
92
92
<link >http://docs.oracle.com/javase/7/docs/api</link >
93
93
<link >https://googleapis.dev/java/google-http-client/1.46.1/</link >
94
- <link >https://googleapis.dev/java/google-oauth-client/1.37 .0/</link >
94
+ <link >https://googleapis.dev/java/google-oauth-client/1.38 .0/</link >
95
95
<link >https://googleapis.dev/java/google-api-client/2.7.2/</link >
96
96
</links >
97
97
</configuration >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-gkebackup</artifactId >
25
- <version >v1-rev20250122 -2.0.0</version >
25
+ <version >v1-rev20250205 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20250122 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20250205 -2.0.0'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments