Skip to content

Commit d9d17f0

Browse files
chore: regenerate netapp client
1 parent 38c1764 commit d9d17f0

File tree

20 files changed

+1488
-18
lines changed

20 files changed

+1488
-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-rev20260125-2.0.0</version>
25+
<version>v1-rev20260218-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-rev20260125-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260218-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: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class NetAppFiles extends com.google.api.client.googleapis.services.json.
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -12143,8 +12143,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1214312143
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1214412144
* <li>Android: {@code newCompatibleTransport} from
1214512145
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
12146-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
12147-
* </li>
12146+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1214812147
* </ul>
1214912148
* @param jsonFactory JSON factory, which may be:
1215012149
* <ul>
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
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.netapp.v1.model;
18+
19+
/**
20+
* Details about a clone volume.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the NetApp API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CloneDetails extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Shared space in GiB. Determined at volume creation time based on size of source
34+
* snapshot.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long sharedSpaceGib;
39+
40+
/**
41+
* Output only. Specifies the full resource name of the source snapshot from which this volume was
42+
* cloned. Format: projects/{project}/locations/{location}/volumes/{volume}/snapshots/{snapshot}
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String sourceSnapshot;
47+
48+
/**
49+
* Output only. Full name of the source volume resource. Format:
50+
* projects/{project}/locations/{location}/volumes/{volume}
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String sourceVolume;
55+
56+
/**
57+
* Output only. Shared space in GiB. Determined at volume creation time based on size of source
58+
* snapshot.
59+
* @return value or {@code null} for none
60+
*/
61+
public java.lang.Long getSharedSpaceGib() {
62+
return sharedSpaceGib;
63+
}
64+
65+
/**
66+
* Output only. Shared space in GiB. Determined at volume creation time based on size of source
67+
* snapshot.
68+
* @param sharedSpaceGib sharedSpaceGib or {@code null} for none
69+
*/
70+
public CloneDetails setSharedSpaceGib(java.lang.Long sharedSpaceGib) {
71+
this.sharedSpaceGib = sharedSpaceGib;
72+
return this;
73+
}
74+
75+
/**
76+
* Output only. Specifies the full resource name of the source snapshot from which this volume was
77+
* cloned. Format: projects/{project}/locations/{location}/volumes/{volume}/snapshots/{snapshot}
78+
* @return value or {@code null} for none
79+
*/
80+
public java.lang.String getSourceSnapshot() {
81+
return sourceSnapshot;
82+
}
83+
84+
/**
85+
* Output only. Specifies the full resource name of the source snapshot from which this volume was
86+
* cloned. Format: projects/{project}/locations/{location}/volumes/{volume}/snapshots/{snapshot}
87+
* @param sourceSnapshot sourceSnapshot or {@code null} for none
88+
*/
89+
public CloneDetails setSourceSnapshot(java.lang.String sourceSnapshot) {
90+
this.sourceSnapshot = sourceSnapshot;
91+
return this;
92+
}
93+
94+
/**
95+
* Output only. Full name of the source volume resource. Format:
96+
* projects/{project}/locations/{location}/volumes/{volume}
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getSourceVolume() {
100+
return sourceVolume;
101+
}
102+
103+
/**
104+
* Output only. Full name of the source volume resource. Format:
105+
* projects/{project}/locations/{location}/volumes/{volume}
106+
* @param sourceVolume sourceVolume or {@code null} for none
107+
*/
108+
public CloneDetails setSourceVolume(java.lang.String sourceVolume) {
109+
this.sourceVolume = sourceVolume;
110+
return this;
111+
}
112+
113+
@Override
114+
public CloneDetails set(String fieldName, Object value) {
115+
return (CloneDetails) super.set(fieldName, value);
116+
}
117+
118+
@Override
119+
public CloneDetails clone() {
120+
return (CloneDetails) super.clone();
121+
}
122+
123+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ public final class Volume extends com.google.api.client.json.GenericJson {
7171
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
7272
private java.lang.Long capacityGib;
7373

74+
/**
75+
* Output only. If this volume is a clone, this field contains details about the clone.
76+
* The value may be {@code null}.
77+
*/
78+
@com.google.api.client.util.Key
79+
private CloneDetails cloneDetails;
80+
7481
/**
7582
* Output only. Size of the volume cold tier data rounded down to the nearest GiB.
7683
* The value may be {@code null}.
@@ -431,6 +438,23 @@ public Volume setCapacityGib(java.lang.Long capacityGib) {
431438
return this;
432439
}
433440

441+
/**
442+
* Output only. If this volume is a clone, this field contains details about the clone.
443+
* @return value or {@code null} for none
444+
*/
445+
public CloneDetails getCloneDetails() {
446+
return cloneDetails;
447+
}
448+
449+
/**
450+
* Output only. If this volume is a clone, this field contains details about the clone.
451+
* @param cloneDetails cloneDetails or {@code null} for none
452+
*/
453+
public Volume setCloneDetails(CloneDetails cloneDetails) {
454+
this.cloneDetails = cloneDetails;
455+
return this;
456+
}
457+
434458
/**
435459
* Output only. Size of the volume cold tier data rounded down to the nearest GiB.
436460
* @return value or {@code null} for none

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-rev20260125-2.0.0</version>
12-
<name>NetApp API v1-rev20260125-2.0.0</name>
11+
<version>v1-rev20260218-2.0.0</version>
12+
<name>NetApp API v1-rev20260218-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-rev20260125-2.0.0</version>
25+
<version>v1-rev20260218-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-rev20260125-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260218-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-rev20260125-2.0.0</version>
25+
<version>v1beta1-rev20260218-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-rev20260125-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20260218-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)