Skip to content

Commit b3fcc0a

Browse files
1 parent 93d450b commit b3fcc0a

File tree

5 files changed

+12
-36
lines changed

5 files changed

+12
-36
lines changed

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

clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/model/BackupConfigInfo.java

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,6 @@ public final class BackupConfigInfo extends com.google.api.client.json.GenericJs
6666
@com.google.api.client.util.Key
6767
private String lastSuccessfulBackupConsistencyTime;
6868

69-
/**
70-
* Output only. If the last log backup were successful, this field has the consistency date.
71-
* The value may be {@code null}.
72-
*/
73-
@com.google.api.client.util.Key
74-
private String lastSuccessfulLogBackupConsistencyTime;
75-
7669
/**
7770
* Configuration for an application backed up by a Backup Appliance.
7871
* @return value or {@code null} for none
@@ -158,23 +151,6 @@ public BackupConfigInfo setLastSuccessfulBackupConsistencyTime(String lastSucces
158151
return this;
159152
}
160153

161-
/**
162-
* Output only. If the last log backup were successful, this field has the consistency date.
163-
* @return value or {@code null} for none
164-
*/
165-
public String getLastSuccessfulLogBackupConsistencyTime() {
166-
return lastSuccessfulLogBackupConsistencyTime;
167-
}
168-
169-
/**
170-
* Output only. If the last log backup were successful, this field has the consistency date.
171-
* @param lastSuccessfulLogBackupConsistencyTime lastSuccessfulLogBackupConsistencyTime or {@code null} for none
172-
*/
173-
public BackupConfigInfo setLastSuccessfulLogBackupConsistencyTime(String lastSuccessfulLogBackupConsistencyTime) {
174-
this.lastSuccessfulLogBackupConsistencyTime = lastSuccessfulLogBackupConsistencyTime;
175-
return this;
176-
}
177-
178154
@Override
179155
public BackupConfigInfo set(String fieldName, Object value) {
180156
return (BackupConfigInfo) super.set(fieldName, value);

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
public final class BackupPlan extends com.google.api.client.json.GenericJson {
3434

3535
/**
36-
* Required. The backup rules for this `BackupPlan`. There must be at least one `BackupRule`
37-
* message.
36+
* Optional. The backup rules for this `BackupPlan`. There must be at least one `BackupRule`
37+
* message if on_demand_retention_limit_days is not set.
3838
* The value may be {@code null}.
3939
*/
4040
@com.google.api.client.util.Key
@@ -151,17 +151,17 @@ public final class BackupPlan extends com.google.api.client.json.GenericJson {
151151
private String updateTime;
152152

153153
/**
154-
* Required. The backup rules for this `BackupPlan`. There must be at least one `BackupRule`
155-
* message.
154+
* Optional. The backup rules for this `BackupPlan`. There must be at least one `BackupRule`
155+
* message if on_demand_retention_limit_days is not set.
156156
* @return value or {@code null} for none
157157
*/
158158
public java.util.List<BackupRule> getBackupRules() {
159159
return backupRules;
160160
}
161161

162162
/**
163-
* Required. The backup rules for this `BackupPlan`. There must be at least one `BackupRule`
164-
* message.
163+
* Optional. The backup rules for this `BackupPlan`. There must be at least one `BackupRule`
164+
* message if on_demand_retention_limit_days is not set.
165165
* @param backupRules backupRules or {@code null} for none
166166
*/
167167
public BackupPlan setBackupRules(java.util.List<BackupRule> backupRules) {

clients/google-api-services-backupdr/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-backupdr</artifactId>
11-
<version>v1-rev20250711-2.0.0</version>
12-
<name>Backup and DR Service API v1-rev20250711-2.0.0</name>
11+
<version>v1-rev20250720-2.0.0</version>
12+
<name>Backup and DR Service API v1-rev20250720-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)