Skip to content

Commit 62af254

Browse files
1 parent a09c6ce commit 62af254

9 files changed

Lines changed: 336 additions & 6 deletions

File tree

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-rev20260309-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-backupdr:v1-rev20260309-2.0.0'
38+
implementation 'com.google.apis:google-api-services-backupdr:v1-rev20260318-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,13 @@ public final class Backup extends com.google.api.client.json.GenericJson {
129129
@com.google.api.client.util.Key
130130
private String expireTime;
131131

132+
/**
133+
* Output only. Filestore specific backup properties.
134+
* The value may be {@code null}.
135+
*/
136+
@com.google.api.client.util.Key
137+
private FilestoreInstanceBackupProperties filestoreInstanceBackupProperties;
138+
132139
/**
133140
* Output only. Configuration for a Google Cloud resource.
134141
* The value may be {@code null}.
@@ -450,6 +457,23 @@ public Backup setExpireTime(String expireTime) {
450457
return this;
451458
}
452459

460+
/**
461+
* Output only. Filestore specific backup properties.
462+
* @return value or {@code null} for none
463+
*/
464+
public FilestoreInstanceBackupProperties getFilestoreInstanceBackupProperties() {
465+
return filestoreInstanceBackupProperties;
466+
}
467+
468+
/**
469+
* Output only. Filestore specific backup properties.
470+
* @param filestoreInstanceBackupProperties filestoreInstanceBackupProperties or {@code null} for none
471+
*/
472+
public Backup setFilestoreInstanceBackupProperties(FilestoreInstanceBackupProperties filestoreInstanceBackupProperties) {
473+
this.filestoreInstanceBackupProperties = filestoreInstanceBackupProperties;
474+
return this;
475+
}
476+
453477
/**
454478
* Output only. Configuration for a Google Cloud resource.
455479
* @return value or {@code null} for none

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ public final class DataSourceGcpResource extends com.google.api.client.json.Gene
6464
@com.google.api.client.util.Key
6565
private DiskDataSourceProperties diskDatasourceProperties;
6666

67+
/**
68+
* Output only. FilestoreInstanceDataSourceProperties has a subset of FileStore instance
69+
* properties that are useful at the Datasource level.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private FilestoreInstanceDataSourceProperties filestoreInstanceDatasourceProperties;
74+
6775
/**
6876
* Output only. Full resource pathname URL of the source Google Cloud resource.
6977
* The value may be {@code null}.
@@ -164,6 +172,25 @@ public DataSourceGcpResource setDiskDatasourceProperties(DiskDataSourcePropertie
164172
return this;
165173
}
166174

175+
/**
176+
* Output only. FilestoreInstanceDataSourceProperties has a subset of FileStore instance
177+
* properties that are useful at the Datasource level.
178+
* @return value or {@code null} for none
179+
*/
180+
public FilestoreInstanceDataSourceProperties getFilestoreInstanceDatasourceProperties() {
181+
return filestoreInstanceDatasourceProperties;
182+
}
183+
184+
/**
185+
* Output only. FilestoreInstanceDataSourceProperties has a subset of FileStore instance
186+
* properties that are useful at the Datasource level.
187+
* @param filestoreInstanceDatasourceProperties filestoreInstanceDatasourceProperties or {@code null} for none
188+
*/
189+
public DataSourceGcpResource setFilestoreInstanceDatasourceProperties(FilestoreInstanceDataSourceProperties filestoreInstanceDatasourceProperties) {
190+
this.filestoreInstanceDatasourceProperties = filestoreInstanceDatasourceProperties;
191+
return this;
192+
}
193+
167194
/**
168195
* Output only. Full resource pathname URL of the source Google Cloud resource.
169196
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class DataSourceGcpResourceInfo extends com.google.api.client.json.
4444
@com.google.api.client.util.Key
4545
private CloudSqlInstanceDataSourceReferenceProperties cloudSqlInstanceProperties;
4646

47+
/**
48+
* Output only. The properties of the Filestore instance.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private FilestoreInstanceDataSourceReferenceProperties filestoreInstanceProperties;
53+
4754
/**
4855
* Output only. The resource name of the Google Cloud resource. Ex:
4956
* projects/{project}/zones/{zone}/instances/{instance}
@@ -100,6 +107,23 @@ public DataSourceGcpResourceInfo setCloudSqlInstanceProperties(CloudSqlInstanceD
100107
return this;
101108
}
102109

110+
/**
111+
* Output only. The properties of the Filestore instance.
112+
* @return value or {@code null} for none
113+
*/
114+
public FilestoreInstanceDataSourceReferenceProperties getFilestoreInstanceProperties() {
115+
return filestoreInstanceProperties;
116+
}
117+
118+
/**
119+
* Output only. The properties of the Filestore instance.
120+
* @param filestoreInstanceProperties filestoreInstanceProperties or {@code null} for none
121+
*/
122+
public DataSourceGcpResourceInfo setFilestoreInstanceProperties(FilestoreInstanceDataSourceReferenceProperties filestoreInstanceProperties) {
123+
this.filestoreInstanceProperties = filestoreInstanceProperties;
124+
return this;
125+
}
126+
103127
/**
104128
* Output only. The resource name of the Google Cloud resource. Ex:
105129
* projects/{project}/zones/{zone}/instances/{instance}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.backupdr.v1.model;
18+
19+
/**
20+
* FilestoreInstanceBackupProperties represents the properties of a Filestore instance that are
21+
* backed up by the datasource. .
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Backup and DR Service API. For a detailed explanation
25+
* see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class FilestoreInstanceBackupProperties extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Output only. The source instance of the backup.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String sourceInstance;
40+
41+
/**
42+
* Output only. The source instance of the backup.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getSourceInstance() {
46+
return sourceInstance;
47+
}
48+
49+
/**
50+
* Output only. The source instance of the backup.
51+
* @param sourceInstance sourceInstance or {@code null} for none
52+
*/
53+
public FilestoreInstanceBackupProperties setSourceInstance(java.lang.String sourceInstance) {
54+
this.sourceInstance = sourceInstance;
55+
return this;
56+
}
57+
58+
@Override
59+
public FilestoreInstanceBackupProperties set(String fieldName, Object value) {
60+
return (FilestoreInstanceBackupProperties) super.set(fieldName, value);
61+
}
62+
63+
@Override
64+
public FilestoreInstanceBackupProperties clone() {
65+
return (FilestoreInstanceBackupProperties) super.clone();
66+
}
67+
68+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.backupdr.v1.model;
18+
19+
/**
20+
* FilestoreInstanceDataSourceProperties represents the properties of a Filestore resource that are
21+
* stored in the DataSource. .
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Backup and DR Service API. For a detailed explanation
25+
* see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class FilestoreInstanceDataSourceProperties extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Output only. The instance creation timestamp.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private String instanceCreateTime;
40+
41+
/**
42+
* Output only. Name of the Filestore instance backed up by the datasource.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String name;
47+
48+
/**
49+
* Output only. The instance creation timestamp.
50+
* @return value or {@code null} for none
51+
*/
52+
public String getInstanceCreateTime() {
53+
return instanceCreateTime;
54+
}
55+
56+
/**
57+
* Output only. The instance creation timestamp.
58+
* @param instanceCreateTime instanceCreateTime or {@code null} for none
59+
*/
60+
public FilestoreInstanceDataSourceProperties setInstanceCreateTime(String instanceCreateTime) {
61+
this.instanceCreateTime = instanceCreateTime;
62+
return this;
63+
}
64+
65+
/**
66+
* Output only. Name of the Filestore instance backed up by the datasource.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getName() {
70+
return name;
71+
}
72+
73+
/**
74+
* Output only. Name of the Filestore instance backed up by the datasource.
75+
* @param name name or {@code null} for none
76+
*/
77+
public FilestoreInstanceDataSourceProperties setName(java.lang.String name) {
78+
this.name = name;
79+
return this;
80+
}
81+
82+
@Override
83+
public FilestoreInstanceDataSourceProperties set(String fieldName, Object value) {
84+
return (FilestoreInstanceDataSourceProperties) super.set(fieldName, value);
85+
}
86+
87+
@Override
88+
public FilestoreInstanceDataSourceProperties clone() {
89+
return (FilestoreInstanceDataSourceProperties) super.clone();
90+
}
91+
92+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.backupdr.v1.model;
18+
19+
/**
20+
* FilestoreInstanceDataSourceReferenceProperties represents the properties of a Filestore resource
21+
* that are stored in the DataSourceReference. .
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Backup and DR Service API. For a detailed explanation
25+
* see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class FilestoreInstanceDataSourceReferenceProperties extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Output only. The instance creation timestamp.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private String instanceCreateTime;
40+
41+
/**
42+
* Output only. Name of the Filestore instance backed up by the datasource. Format:
43+
* projects/{project}/instances/{instance}
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String name;
48+
49+
/**
50+
* Output only. The instance creation timestamp.
51+
* @return value or {@code null} for none
52+
*/
53+
public String getInstanceCreateTime() {
54+
return instanceCreateTime;
55+
}
56+
57+
/**
58+
* Output only. The instance creation timestamp.
59+
* @param instanceCreateTime instanceCreateTime or {@code null} for none
60+
*/
61+
public FilestoreInstanceDataSourceReferenceProperties setInstanceCreateTime(String instanceCreateTime) {
62+
this.instanceCreateTime = instanceCreateTime;
63+
return this;
64+
}
65+
66+
/**
67+
* Output only. Name of the Filestore instance backed up by the datasource. Format:
68+
* projects/{project}/instances/{instance}
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.String getName() {
72+
return name;
73+
}
74+
75+
/**
76+
* Output only. Name of the Filestore instance backed up by the datasource. Format:
77+
* projects/{project}/instances/{instance}
78+
* @param name name or {@code null} for none
79+
*/
80+
public FilestoreInstanceDataSourceReferenceProperties setName(java.lang.String name) {
81+
this.name = name;
82+
return this;
83+
}
84+
85+
@Override
86+
public FilestoreInstanceDataSourceReferenceProperties set(String fieldName, Object value) {
87+
return (FilestoreInstanceDataSourceReferenceProperties) super.set(fieldName, value);
88+
}
89+
90+
@Override
91+
public FilestoreInstanceDataSourceReferenceProperties clone() {
92+
return (FilestoreInstanceDataSourceReferenceProperties) super.clone();
93+
}
94+
95+
}

0 commit comments

Comments
 (0)