Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-gkebackup/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gkebackup</artifactId>
<version>v1-rev20260422-2.0.0</version>
<version>v1-rev20260527-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260422-2.0.0'
implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260527-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.google.api.services.gkebackup.v1.model;

/**
* Log entry for Backup and Restore Job for resources using BackupPlan based protection. Next Id: 24
* Log entry for Backup and Restore Job for resources using BackupPlan based protection. Next Id: 25
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Backup for GKE API. For a detailed explanation see:
Expand Down Expand Up @@ -191,6 +191,13 @@ public final class BDRBackupRestoreJobLog extends com.google.api.client.json.Gen
@com.google.api.client.util.Key
private String startTime;

/**
* The target resource type for restore jobs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String targetResourceType;

/**
* Backup consistency time.
* @return value or {@code null} for none
Expand Down Expand Up @@ -584,6 +591,23 @@ public BDRBackupRestoreJobLog setStartTime(String startTime) {
return this;
}

/**
* The target resource type for restore jobs.
* @return value or {@code null} for none
*/
public java.lang.String getTargetResourceType() {
return targetResourceType;
}

/**
* The target resource type for restore jobs.
* @param targetResourceType targetResourceType or {@code null} for none
*/
public BDRBackupRestoreJobLog setTargetResourceType(java.lang.String targetResourceType) {
this.targetResourceType = targetResourceType;
return this;
}

@Override
public BDRBackupRestoreJobLog set(String fieldName, Object value) {
return (BDRBackupRestoreJobLog) super.set(fieldName, value);
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-gkebackup/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gkebackup</artifactId>
<version>v1-rev20260422-2.0.0</version>
<name>Backup for GKE API v1-rev20260422-2.0.0</name>
<version>v1-rev20260527-2.0.0</version>
<name>Backup for GKE API v1-rev20260527-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-gkebackup/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gkebackup</artifactId>
<version>v1-rev20260422-2.0.0</version>
<version>v1-rev20260527-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260422-2.0.0'
implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20260527-2.0.0'
}
```

Expand Down