Skip to content

Commit efb1840

Browse files
1 parent 54eae31 commit efb1840

22 files changed

+1256
-48
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-rev20260218-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-netapp:v1-rev20260218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260318-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: 624 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ public final class Backup extends com.google.api.client.json.GenericJson {
113113
private java.lang.String sourceSnapshot;
114114

115115
/**
116-
* Volume full name of this backup belongs to. Format:
117-
* `projects/{projects_id}/locations/{location}/volumes/{volume_id}`
116+
* Volume full name of this backup belongs to. Either source_volume or ontap_source should be
117+
* provided. Format: `projects/{projects_id}/locations/{location}/volumes/{volume_id}`
118118
* The value may be {@code null}.
119119
*/
120120
@com.google.api.client.util.Key
@@ -343,17 +343,17 @@ public Backup setSourceSnapshot(java.lang.String sourceSnapshot) {
343343
}
344344

345345
/**
346-
* Volume full name of this backup belongs to. Format:
347-
* `projects/{projects_id}/locations/{location}/volumes/{volume_id}`
346+
* Volume full name of this backup belongs to. Either source_volume or ontap_source should be
347+
* provided. Format: `projects/{projects_id}/locations/{location}/volumes/{volume_id}`
348348
* @return value or {@code null} for none
349349
*/
350350
public java.lang.String getSourceVolume() {
351351
return sourceVolume;
352352
}
353353

354354
/**
355-
* Volume full name of this backup belongs to. Format:
356-
* `projects/{projects_id}/locations/{location}/volumes/{volume_id}`
355+
* Volume full name of this backup belongs to. Either source_volume or ontap_source should be
356+
* provided. Format: `projects/{projects_id}/locations/{location}/volumes/{volume_id}`
357357
* @param sourceVolume sourceVolume or {@code null} for none
358358
*/
359359
public Backup setSourceVolume(java.lang.String sourceVolume) {
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Response message for `ExecuteOntapDelete` API.
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 ExecuteOntapDeleteResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The raw `JSON` body of the response.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.Map<String, java.lang.Object> body;
38+
39+
/**
40+
* The raw `JSON` body of the response.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.Map<String, java.lang.Object> getBody() {
44+
return body;
45+
}
46+
47+
/**
48+
* The raw `JSON` body of the response.
49+
* @param body body or {@code null} for none
50+
*/
51+
public ExecuteOntapDeleteResponse setBody(java.util.Map<String, java.lang.Object> body) {
52+
this.body = body;
53+
return this;
54+
}
55+
56+
@Override
57+
public ExecuteOntapDeleteResponse set(String fieldName, Object value) {
58+
return (ExecuteOntapDeleteResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ExecuteOntapDeleteResponse clone() {
63+
return (ExecuteOntapDeleteResponse) super.clone();
64+
}
65+
66+
}
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Response message for `ExecuteOntapGet` API.
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 ExecuteOntapGetResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The raw `JSON` body of the response.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.Map<String, java.lang.Object> body;
38+
39+
/**
40+
* The raw `JSON` body of the response.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.Map<String, java.lang.Object> getBody() {
44+
return body;
45+
}
46+
47+
/**
48+
* The raw `JSON` body of the response.
49+
* @param body body or {@code null} for none
50+
*/
51+
public ExecuteOntapGetResponse setBody(java.util.Map<String, java.lang.Object> body) {
52+
this.body = body;
53+
return this;
54+
}
55+
56+
@Override
57+
public ExecuteOntapGetResponse set(String fieldName, Object value) {
58+
return (ExecuteOntapGetResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ExecuteOntapGetResponse clone() {
63+
return (ExecuteOntapGetResponse) super.clone();
64+
}
65+
66+
}
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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+
* Request message for `ExecuteOntapPatch` API.
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 ExecuteOntapPatchRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The raw `JSON` body of the request. The body should be in the format of the ONTAP
34+
* resource. For example: ``` { "body": { "field1": "value1", "field2": "value2", } } ```
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.Map<String, java.lang.Object> body;
39+
40+
/**
41+
* Required. The raw `JSON` body of the request. The body should be in the format of the ONTAP
42+
* resource. For example: ``` { "body": { "field1": "value1", "field2": "value2", } } ```
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.Map<String, java.lang.Object> getBody() {
46+
return body;
47+
}
48+
49+
/**
50+
* Required. The raw `JSON` body of the request. The body should be in the format of the ONTAP
51+
* resource. For example: ``` { "body": { "field1": "value1", "field2": "value2", } } ```
52+
* @param body body or {@code null} for none
53+
*/
54+
public ExecuteOntapPatchRequest setBody(java.util.Map<String, java.lang.Object> body) {
55+
this.body = body;
56+
return this;
57+
}
58+
59+
@Override
60+
public ExecuteOntapPatchRequest set(String fieldName, Object value) {
61+
return (ExecuteOntapPatchRequest) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public ExecuteOntapPatchRequest clone() {
66+
return (ExecuteOntapPatchRequest) super.clone();
67+
}
68+
69+
}
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Response message for `ExecuteOntapPatch` API.
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 ExecuteOntapPatchResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The raw `JSON` body of the response.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.Map<String, java.lang.Object> body;
38+
39+
/**
40+
* The raw `JSON` body of the response.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.Map<String, java.lang.Object> getBody() {
44+
return body;
45+
}
46+
47+
/**
48+
* The raw `JSON` body of the response.
49+
* @param body body or {@code null} for none
50+
*/
51+
public ExecuteOntapPatchResponse setBody(java.util.Map<String, java.lang.Object> body) {
52+
this.body = body;
53+
return this;
54+
}
55+
56+
@Override
57+
public ExecuteOntapPatchResponse set(String fieldName, Object value) {
58+
return (ExecuteOntapPatchResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ExecuteOntapPatchResponse clone() {
63+
return (ExecuteOntapPatchResponse) super.clone();
64+
}
65+
66+
}
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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+
* Request message for `ExecuteOntapPost` API.
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 ExecuteOntapPostRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The raw `JSON` body of the request. The body should be in the format of the ONTAP
34+
* resource. For example: ``` { "body": { "field1": "value1", "field2": "value2", } } ```
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.Map<String, java.lang.Object> body;
39+
40+
/**
41+
* Required. The raw `JSON` body of the request. The body should be in the format of the ONTAP
42+
* resource. For example: ``` { "body": { "field1": "value1", "field2": "value2", } } ```
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.Map<String, java.lang.Object> getBody() {
46+
return body;
47+
}
48+
49+
/**
50+
* Required. The raw `JSON` body of the request. The body should be in the format of the ONTAP
51+
* resource. For example: ``` { "body": { "field1": "value1", "field2": "value2", } } ```
52+
* @param body body or {@code null} for none
53+
*/
54+
public ExecuteOntapPostRequest setBody(java.util.Map<String, java.lang.Object> body) {
55+
this.body = body;
56+
return this;
57+
}
58+
59+
@Override
60+
public ExecuteOntapPostRequest set(String fieldName, Object value) {
61+
return (ExecuteOntapPostRequest) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public ExecuteOntapPostRequest clone() {
66+
return (ExecuteOntapPostRequest) super.clone();
67+
}
68+
69+
}

0 commit comments

Comments
 (0)