Skip to content

Commit 3e7e869

Browse files
1 parent 70ee725 commit 3e7e869

File tree

5 files changed

+48
-15
lines changed

5 files changed

+48
-15
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-rev20260213-2.0.0</version>
25+
<version>v1-rev20260318-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-rev20260213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260318-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: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,14 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service. This method can be called in
316-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
317-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
318-
* public locations as well as private or other locations specifically visible to the project.
315+
* Lists information about the supported locations for this service. This method lists locations
316+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
317+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
318+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
319+
* lists locations visible to that specific project. This includes public, private, or other
320+
* project-specific locations enabled for the project. For gRPC and client library implementations,
321+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
322+
* incorporated into the request path based on the specific service implementation and version.
319323
*
320324
* Create a request for the method "locations.list".
321325
*
@@ -339,10 +343,15 @@ public class List extends BackupforGKERequest<com.google.api.services.gkebackup.
339343
java.util.regex.Pattern.compile("^projects/[^/]+$");
340344

341345
/**
342-
* Lists information about the supported locations for this service. This method can be called in
343-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
344-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
345-
* public locations as well as private or other locations specifically visible to the project.
346+
* Lists information about the supported locations for this service. This method lists locations
347+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
348+
* locations**: If `name` is empty, the method lists the public locations available to all
349+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
350+
* the method lists locations visible to that specific project. This includes public, private, or
351+
* other project-specific locations enabled for the project. For gRPC and client library
352+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
353+
* resource name is incorporated into the request path based on the specific service
354+
* implementation and version.
346355
*
347356
* Create a request for the method "locations.list".
348357
*

clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/BDRBackupRestoreJobLog.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.gkebackup.v1.model;
1818

1919
/**
20-
* Log entry for Backup and Restore Job for resources using BackupPlan based protection. Next Id: 23
20+
* Log entry for Backup and Restore Job for resources using BackupPlan based protection. Next Id: 24
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 Backup for GKE API. For a detailed explanation see:
@@ -72,6 +72,13 @@ public final class BDRBackupRestoreJobLog extends com.google.api.client.json.Gen
7272
@com.google.api.client.util.Key
7373
private java.lang.String backupVaultName;
7474

75+
/**
76+
* Canonical Data Source Name
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private java.lang.String dataSourceName;
81+
7582
/**
7683
* End time of the job.
7784
* The value may be {@code null}.
@@ -288,6 +295,23 @@ public BDRBackupRestoreJobLog setBackupVaultName(java.lang.String backupVaultNam
288295
return this;
289296
}
290297

298+
/**
299+
* Canonical Data Source Name
300+
* @return value or {@code null} for none
301+
*/
302+
public java.lang.String getDataSourceName() {
303+
return dataSourceName;
304+
}
305+
306+
/**
307+
* Canonical Data Source Name
308+
* @param dataSourceName dataSourceName or {@code null} for none
309+
*/
310+
public BDRBackupRestoreJobLog setDataSourceName(java.lang.String dataSourceName) {
311+
this.dataSourceName = dataSourceName;
312+
return this;
313+
}
314+
291315
/**
292316
* End time of the job.
293317
* @return value or {@code null} for none

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)