Skip to content

Commit 764adee

Browse files
1 parent facafcb commit 764adee

File tree

14 files changed

+2566
-12
lines changed

14 files changed

+2566
-12
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-rev20250116-2.0.0</version>
25+
<version>v1-rev20250123-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-rev20250116-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20250123-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: 823 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/HybridPeeringDetails.java

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,28 @@ public final class HybridPeeringDetails extends com.google.api.client.json.Gener
5050
@com.google.api.client.util.Key
5151
private java.lang.String passphrase;
5252

53+
/**
54+
* Optional. Name of the user's local source cluster to be peered with the destination cluster.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String peerClusterName;
59+
60+
/**
61+
* Optional. Name of the user's local source vserver svm to be peered with the destination vserver
62+
* svm.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String peerSvmName;
67+
68+
/**
69+
* Optional. Name of the user's local source volume to be peered with the destination volume.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.String peerVolumeName;
74+
5375
/**
5476
* Optional. IP address of the subnet.
5577
* The value may be {@code null}.
@@ -108,6 +130,59 @@ public HybridPeeringDetails setPassphrase(java.lang.String passphrase) {
108130
return this;
109131
}
110132

133+
/**
134+
* Optional. Name of the user's local source cluster to be peered with the destination cluster.
135+
* @return value or {@code null} for none
136+
*/
137+
public java.lang.String getPeerClusterName() {
138+
return peerClusterName;
139+
}
140+
141+
/**
142+
* Optional. Name of the user's local source cluster to be peered with the destination cluster.
143+
* @param peerClusterName peerClusterName or {@code null} for none
144+
*/
145+
public HybridPeeringDetails setPeerClusterName(java.lang.String peerClusterName) {
146+
this.peerClusterName = peerClusterName;
147+
return this;
148+
}
149+
150+
/**
151+
* Optional. Name of the user's local source vserver svm to be peered with the destination vserver
152+
* svm.
153+
* @return value or {@code null} for none
154+
*/
155+
public java.lang.String getPeerSvmName() {
156+
return peerSvmName;
157+
}
158+
159+
/**
160+
* Optional. Name of the user's local source vserver svm to be peered with the destination vserver
161+
* svm.
162+
* @param peerSvmName peerSvmName or {@code null} for none
163+
*/
164+
public HybridPeeringDetails setPeerSvmName(java.lang.String peerSvmName) {
165+
this.peerSvmName = peerSvmName;
166+
return this;
167+
}
168+
169+
/**
170+
* Optional. Name of the user's local source volume to be peered with the destination volume.
171+
* @return value or {@code null} for none
172+
*/
173+
public java.lang.String getPeerVolumeName() {
174+
return peerVolumeName;
175+
}
176+
177+
/**
178+
* Optional. Name of the user's local source volume to be peered with the destination volume.
179+
* @param peerVolumeName peerVolumeName or {@code null} for none
180+
*/
181+
public HybridPeeringDetails setPeerVolumeName(java.lang.String peerVolumeName) {
182+
this.peerVolumeName = peerVolumeName;
183+
return this;
184+
}
185+
111186
/**
112187
* Optional. IP address of the subnet.
113188
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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+
* ListQuotaRulesResponse is the response to a ListQuotaRulesRequest.
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 ListQuotaRulesResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* A token identifying a page of results the server should return.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String nextPageToken;
38+
39+
/**
40+
* List of quota rules
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<QuotaRule> quotaRules;
45+
46+
/**
47+
* Locations that could not be reached.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<java.lang.String> unreachable;
52+
53+
/**
54+
* A token identifying a page of results the server should return.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getNextPageToken() {
58+
return nextPageToken;
59+
}
60+
61+
/**
62+
* A token identifying a page of results the server should return.
63+
* @param nextPageToken nextPageToken or {@code null} for none
64+
*/
65+
public ListQuotaRulesResponse setNextPageToken(java.lang.String nextPageToken) {
66+
this.nextPageToken = nextPageToken;
67+
return this;
68+
}
69+
70+
/**
71+
* List of quota rules
72+
* @return value or {@code null} for none
73+
*/
74+
public java.util.List<QuotaRule> getQuotaRules() {
75+
return quotaRules;
76+
}
77+
78+
/**
79+
* List of quota rules
80+
* @param quotaRules quotaRules or {@code null} for none
81+
*/
82+
public ListQuotaRulesResponse setQuotaRules(java.util.List<QuotaRule> quotaRules) {
83+
this.quotaRules = quotaRules;
84+
return this;
85+
}
86+
87+
/**
88+
* Locations that could not be reached.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.util.List<java.lang.String> getUnreachable() {
92+
return unreachable;
93+
}
94+
95+
/**
96+
* Locations that could not be reached.
97+
* @param unreachable unreachable or {@code null} for none
98+
*/
99+
public ListQuotaRulesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
100+
this.unreachable = unreachable;
101+
return this;
102+
}
103+
104+
@Override
105+
public ListQuotaRulesResponse set(String fieldName, Object value) {
106+
return (ListQuotaRulesResponse) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public ListQuotaRulesResponse clone() {
111+
return (ListQuotaRulesResponse) super.clone();
112+
}
113+
114+
}

0 commit comments

Comments
 (0)