diff --git a/clients/google-api-services-gkebackup/v1/2.0.0/README.md b/clients/google-api-services-gkebackup/v1/2.0.0/README.md
index bc0f9beb798..467a4cfa96b 100644
--- a/clients/google-api-services-gkebackup/v1/2.0.0/README.md
+++ b/clients/google-api-services-gkebackup/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
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:
@@ -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
@@ -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);
diff --git a/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml b/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml
index c85bc2854bf..842a925dca7 100644
--- a/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-gkebackup/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@