Skip to content

Commit 9105aea

Browse files
1 parent b9deb59 commit 9105aea

File tree

6 files changed

+74
-18
lines changed

6 files changed

+74
-18
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-rev20240626-2.0.0</version>
25+
<version>v1-rev20240711-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-rev20240626-2.0.0'
38+
implementation 'com.google.apis:google-api-services-backupdr:v1-rev20240711-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1741,6 +1741,29 @@ public Patch setName(java.lang.String name) {
17411741
return this;
17421742
}
17431743

1744+
/**
1745+
* Optional. If set to true, will not check plan duration against backup vault enforcement
1746+
* duration. Non-standard field.
1747+
*/
1748+
@com.google.api.client.util.Key
1749+
private java.lang.Boolean force;
1750+
1751+
/** Optional. If set to true, will not check plan duration against backup vault enforcement duration.
1752+
Non-standard field.
1753+
*/
1754+
public java.lang.Boolean getForce() {
1755+
return force;
1756+
}
1757+
1758+
/**
1759+
* Optional. If set to true, will not check plan duration against backup vault enforcement
1760+
* duration. Non-standard field.
1761+
*/
1762+
public Patch setForce(java.lang.Boolean force) {
1763+
this.force = force;
1764+
return this;
1765+
}
1766+
17441767
/**
17451768
* Optional. An optional request ID to identify requests. Specify a unique request ID so
17461769
* that if you must retry your request, the server will know to ignore the request if it

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,14 @@ public final class AttachedDisk extends com.google.api.client.json.GenericJson {
8282
@com.google.api.client.util.Key
8383
private java.lang.String diskType;
8484

85+
/**
86+
* Optional. Output only. The URI of the disk type resource. For example:
87+
* projects/project/zones/zone/diskTypes/pd-standard or pd-ssd
88+
* The value may be {@code null}.
89+
*/
90+
@com.google.api.client.util.Key
91+
private java.lang.String diskTypeUri;
92+
8593
/**
8694
* Optional. A list of features to enable on the guest operating system. Applicable only for
8795
* bootable images.
@@ -264,6 +272,25 @@ public AttachedDisk setDiskType(java.lang.String diskType) {
264272
return this;
265273
}
266274

275+
/**
276+
* Optional. Output only. The URI of the disk type resource. For example:
277+
* projects/project/zones/zone/diskTypes/pd-standard or pd-ssd
278+
* @return value or {@code null} for none
279+
*/
280+
public java.lang.String getDiskTypeUri() {
281+
return diskTypeUri;
282+
}
283+
284+
/**
285+
* Optional. Output only. The URI of the disk type resource. For example:
286+
* projects/project/zones/zone/diskTypes/pd-standard or pd-ssd
287+
* @param diskTypeUri diskTypeUri or {@code null} for none
288+
*/
289+
public AttachedDisk setDiskTypeUri(java.lang.String diskTypeUri) {
290+
this.diskTypeUri = diskTypeUri;
291+
return this;
292+
}
293+
267294
/**
268295
* Optional. A list of features to enable on the guest operating system. Applicable only for
269296
* bootable images.

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

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,14 @@ public final class ComputeInstanceBackupProperties extends com.google.api.client
134134
private java.util.List<ServiceAccount> serviceAccount;
135135

136136
/**
137-
* Name of the source instance at the time of backup. The name is 1-63 characters long, and
138-
* complies with RFC1035.
137+
* The source instance used to create this backup. This can be a partial or full URL to the
138+
* resource. For example, the following are valid values:
139+
* -https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/instance
140+
* -projects/project/zones/zone/instances/instance
139141
* The value may be {@code null}.
140142
*/
141143
@com.google.api.client.util.Key
142-
private java.lang.String sourceInstanceName;
144+
private java.lang.String sourceInstance;
143145

144146
/**
145147
* A list of tags to apply to the instances that are created from these properties. The tags
@@ -367,21 +369,25 @@ public ComputeInstanceBackupProperties setServiceAccount(java.util.List<ServiceA
367369
}
368370

369371
/**
370-
* Name of the source instance at the time of backup. The name is 1-63 characters long, and
371-
* complies with RFC1035.
372+
* The source instance used to create this backup. This can be a partial or full URL to the
373+
* resource. For example, the following are valid values:
374+
* -https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/instance
375+
* -projects/project/zones/zone/instances/instance
372376
* @return value or {@code null} for none
373377
*/
374-
public java.lang.String getSourceInstanceName() {
375-
return sourceInstanceName;
378+
public java.lang.String getSourceInstance() {
379+
return sourceInstance;
376380
}
377381

378382
/**
379-
* Name of the source instance at the time of backup. The name is 1-63 characters long, and
380-
* complies with RFC1035.
381-
* @param sourceInstanceName sourceInstanceName or {@code null} for none
383+
* The source instance used to create this backup. This can be a partial or full URL to the
384+
* resource. For example, the following are valid values:
385+
* -https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/instance
386+
* -projects/project/zones/zone/instances/instance
387+
* @param sourceInstance sourceInstance or {@code null} for none
382388
*/
383-
public ComputeInstanceBackupProperties setSourceInstanceName(java.lang.String sourceInstanceName) {
384-
this.sourceInstanceName = sourceInstanceName;
389+
public ComputeInstanceBackupProperties setSourceInstance(java.lang.String sourceInstance) {
390+
this.sourceInstance = sourceInstance;
385391
return this;
386392
}
387393

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-rev20240626-2.0.0</version>
12-
<name>Backup and DR Service API v1-rev20240626-2.0.0</name>
11+
<version>v1-rev20240711-2.0.0</version>
12+
<name>Backup and DR Service API v1-rev20240711-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-rev20240626-2.0.0</version>
25+
<version>v1-rev20240711-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-rev20240626-2.0.0'
38+
implementation 'com.google.apis:google-api-services-backupdr:v1-rev20240711-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)