Skip to content

Commit 7a30503

Browse files
1 parent f700d8c commit 7a30503

File tree

15 files changed

+514
-18
lines changed

15 files changed

+514
-18
lines changed

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

clients/google-api-services-netapp/v1/2.0.0/com/google/api/services/netapp/v1/NetAppFiles.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,29 @@ public List setName(java.lang.String name) {
444444
return this;
445445
}
446446

447+
/**
448+
* Optional. A list of extra location types that should be used as conditions for
449+
* controlling the visibility of the locations.
450+
*/
451+
@com.google.api.client.util.Key
452+
private java.util.List<java.lang.String> extraLocationTypes;
453+
454+
/** Optional. A list of extra location types that should be used as conditions for controlling the
455+
visibility of the locations.
456+
*/
457+
public java.util.List<java.lang.String> getExtraLocationTypes() {
458+
return extraLocationTypes;
459+
}
460+
461+
/**
462+
* Optional. A list of extra location types that should be used as conditions for
463+
* controlling the visibility of the locations.
464+
*/
465+
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466+
this.extraLocationTypes = extraLocationTypes;
467+
return this;
468+
}
469+
447470
/**
448471
* A filter to narrow down results to a preferred subset. The filtering language accepts
449472
* strings like `"displayName=tokyo"`, and is documented in more detail in

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

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class Backup extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. Region in which backup is stored. Format:
34+
* `projects/{project_id}/locations/{location}`
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String backupRegion;
39+
3240
/**
3341
* Output only. Type of backup, manually created or created by a backup policy.
3442
* The value may be {@code null}.
@@ -112,6 +120,14 @@ public final class Backup extends com.google.api.client.json.GenericJson {
112120
@com.google.api.client.util.Key
113121
private java.lang.String state;
114122

123+
/**
124+
* Output only. Region of the volume from which the backup was created. Format:
125+
* `projects/{project_id}/locations/{location}`
126+
* The value may be {@code null}.
127+
*/
128+
@com.google.api.client.util.Key
129+
private java.lang.String volumeRegion;
130+
115131
/**
116132
* Output only. Size of the file system when the backup was created. When creating a new volume
117133
* from the backup, the volume capacity will have to be at least as big.
@@ -120,6 +136,25 @@ public final class Backup extends com.google.api.client.json.GenericJson {
120136
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
121137
private java.lang.Long volumeUsageBytes;
122138

139+
/**
140+
* Output only. Region in which backup is stored. Format:
141+
* `projects/{project_id}/locations/{location}`
142+
* @return value or {@code null} for none
143+
*/
144+
public java.lang.String getBackupRegion() {
145+
return backupRegion;
146+
}
147+
148+
/**
149+
* Output only. Region in which backup is stored. Format:
150+
* `projects/{project_id}/locations/{location}`
151+
* @param backupRegion backupRegion or {@code null} for none
152+
*/
153+
public Backup setBackupRegion(java.lang.String backupRegion) {
154+
this.backupRegion = backupRegion;
155+
return this;
156+
}
157+
123158
/**
124159
* Output only. Type of backup, manually created or created by a backup policy.
125160
* @return value or {@code null} for none
@@ -319,6 +354,25 @@ public Backup setState(java.lang.String state) {
319354
return this;
320355
}
321356

357+
/**
358+
* Output only. Region of the volume from which the backup was created. Format:
359+
* `projects/{project_id}/locations/{location}`
360+
* @return value or {@code null} for none
361+
*/
362+
public java.lang.String getVolumeRegion() {
363+
return volumeRegion;
364+
}
365+
366+
/**
367+
* Output only. Region of the volume from which the backup was created. Format:
368+
* `projects/{project_id}/locations/{location}`
369+
* @param volumeRegion volumeRegion or {@code null} for none
370+
*/
371+
public Backup setVolumeRegion(java.lang.String volumeRegion) {
372+
this.volumeRegion = volumeRegion;
373+
return this;
374+
}
375+
322376
/**
323377
* Output only. Size of the file system when the backup was created. When creating a new volume
324378
* from the backup, the volume capacity will have to be at least as big.

clients/google-api-services-netapp/v1/2.0.0/com/google/api/services/netapp/v1/model/BackupVault.java

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,21 @@
2929
@SuppressWarnings("javadoc")
3030
public final class BackupVault extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Region where the backups are stored. Format:
34+
* `projects/{project_id}/locations/{location}`
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String backupRegion;
39+
40+
/**
41+
* Optional. Type of backup vault to be created. Default is IN_REGION.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String backupVaultType;
46+
3247
/**
3348
* Output only. Create time of the backup vault.
3449
* The value may be {@code null}.
@@ -43,6 +58,14 @@ public final class BackupVault extends com.google.api.client.json.GenericJson {
4358
@com.google.api.client.util.Key
4459
private java.lang.String description;
4560

61+
/**
62+
* Output only. Name of the Backup vault created in backup region. Format:
63+
* `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String destinationBackupVault;
68+
4669
/**
4770
* Resource labels to represent user provided metadata.
4871
* The value may be {@code null}.
@@ -58,13 +81,65 @@ public final class BackupVault extends com.google.api.client.json.GenericJson {
5881
@com.google.api.client.util.Key
5982
private java.lang.String name;
6083

84+
/**
85+
* Output only. Name of the Backup vault created in source region. Format:
86+
* `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`
87+
* The value may be {@code null}.
88+
*/
89+
@com.google.api.client.util.Key
90+
private java.lang.String sourceBackupVault;
91+
92+
/**
93+
* Output only. Region in which the backup vault is created. Format:
94+
* `projects/{project_id}/locations/{location}`
95+
* The value may be {@code null}.
96+
*/
97+
@com.google.api.client.util.Key
98+
private java.lang.String sourceRegion;
99+
61100
/**
62101
* Output only. The backup vault state.
63102
* The value may be {@code null}.
64103
*/
65104
@com.google.api.client.util.Key
66105
private java.lang.String state;
67106

107+
/**
108+
* Optional. Region where the backups are stored. Format:
109+
* `projects/{project_id}/locations/{location}`
110+
* @return value or {@code null} for none
111+
*/
112+
public java.lang.String getBackupRegion() {
113+
return backupRegion;
114+
}
115+
116+
/**
117+
* Optional. Region where the backups are stored. Format:
118+
* `projects/{project_id}/locations/{location}`
119+
* @param backupRegion backupRegion or {@code null} for none
120+
*/
121+
public BackupVault setBackupRegion(java.lang.String backupRegion) {
122+
this.backupRegion = backupRegion;
123+
return this;
124+
}
125+
126+
/**
127+
* Optional. Type of backup vault to be created. Default is IN_REGION.
128+
* @return value or {@code null} for none
129+
*/
130+
public java.lang.String getBackupVaultType() {
131+
return backupVaultType;
132+
}
133+
134+
/**
135+
* Optional. Type of backup vault to be created. Default is IN_REGION.
136+
* @param backupVaultType backupVaultType or {@code null} for none
137+
*/
138+
public BackupVault setBackupVaultType(java.lang.String backupVaultType) {
139+
this.backupVaultType = backupVaultType;
140+
return this;
141+
}
142+
68143
/**
69144
* Output only. Create time of the backup vault.
70145
* @return value or {@code null} for none
@@ -99,6 +174,25 @@ public BackupVault setDescription(java.lang.String description) {
99174
return this;
100175
}
101176

177+
/**
178+
* Output only. Name of the Backup vault created in backup region. Format:
179+
* `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`
180+
* @return value or {@code null} for none
181+
*/
182+
public java.lang.String getDestinationBackupVault() {
183+
return destinationBackupVault;
184+
}
185+
186+
/**
187+
* Output only. Name of the Backup vault created in backup region. Format:
188+
* `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`
189+
* @param destinationBackupVault destinationBackupVault or {@code null} for none
190+
*/
191+
public BackupVault setDestinationBackupVault(java.lang.String destinationBackupVault) {
192+
this.destinationBackupVault = destinationBackupVault;
193+
return this;
194+
}
195+
102196
/**
103197
* Resource labels to represent user provided metadata.
104198
* @return value or {@code null} for none
@@ -135,6 +229,44 @@ public BackupVault setName(java.lang.String name) {
135229
return this;
136230
}
137231

232+
/**
233+
* Output only. Name of the Backup vault created in source region. Format:
234+
* `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`
235+
* @return value or {@code null} for none
236+
*/
237+
public java.lang.String getSourceBackupVault() {
238+
return sourceBackupVault;
239+
}
240+
241+
/**
242+
* Output only. Name of the Backup vault created in source region. Format:
243+
* `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`
244+
* @param sourceBackupVault sourceBackupVault or {@code null} for none
245+
*/
246+
public BackupVault setSourceBackupVault(java.lang.String sourceBackupVault) {
247+
this.sourceBackupVault = sourceBackupVault;
248+
return this;
249+
}
250+
251+
/**
252+
* Output only. Region in which the backup vault is created. Format:
253+
* `projects/{project_id}/locations/{location}`
254+
* @return value or {@code null} for none
255+
*/
256+
public java.lang.String getSourceRegion() {
257+
return sourceRegion;
258+
}
259+
260+
/**
261+
* Output only. Region in which the backup vault is created. Format:
262+
* `projects/{project_id}/locations/{location}`
263+
* @param sourceRegion sourceRegion or {@code null} for none
264+
*/
265+
public BackupVault setSourceRegion(java.lang.String sourceRegion) {
266+
this.sourceRegion = sourceRegion;
267+
return this;
268+
}
269+
138270
/**
139271
* Output only. The backup vault state.
140272
* @return value or {@code null} for none

clients/google-api-services-netapp/v1/2.0.0/com/google/api/services/netapp/v1/model/TieringPolicy.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class TieringPolicy extends com.google.api.client.json.GenericJson
3131

3232
/**
3333
* Optional. Time in days to mark the volume's data block as cold and make it eligible for
34-
* tiering, can be range from 7-183. Default is 31.
34+
* tiering, can be range from 2-183. Default is 31.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -46,7 +46,7 @@ public final class TieringPolicy extends com.google.api.client.json.GenericJson
4646

4747
/**
4848
* Optional. Time in days to mark the volume's data block as cold and make it eligible for
49-
* tiering, can be range from 7-183. Default is 31.
49+
* tiering, can be range from 2-183. Default is 31.
5050
* @return value or {@code null} for none
5151
*/
5252
public java.lang.Integer getCoolingThresholdDays() {
@@ -55,7 +55,7 @@ public java.lang.Integer getCoolingThresholdDays() {
5555

5656
/**
5757
* Optional. Time in days to mark the volume's data block as cold and make it eligible for
58-
* tiering, can be range from 7-183. Default is 31.
58+
* tiering, can be range from 2-183. Default is 31.
5959
* @param coolingThresholdDays coolingThresholdDays or {@code null} for none
6060
*/
6161
public TieringPolicy setCoolingThresholdDays(java.lang.Integer coolingThresholdDays) {

clients/google-api-services-netapp/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-netapp</artifactId>
11-
<version>v1-rev20250129-2.0.0</version>
12-
<name>NetApp API v1-rev20250129-2.0.0</name>
11+
<version>v1-rev20250326-2.0.0</version>
12+
<name>NetApp API v1-rev20250326-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-netapp/v1beta1/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-netapp</artifactId>
25-
<version>v1beta1-rev20250129-2.0.0</version>
25+
<version>v1beta1-rev20250326-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-netapp:v1beta1-rev20250129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20250326-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)