Skip to content

Commit 1b4cb69

Browse files
1 parent 870af34 commit 1b4cb69

File tree

14 files changed

+860
-12
lines changed

14 files changed

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

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

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,27 @@ public final class HybridReplicationParameters extends com.google.api.client.jso
4444
@com.google.api.client.util.Key
4545
private java.lang.String description;
4646

47+
/**
48+
* Optional. Type of the hybrid replication.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String hybridReplicationType;
53+
4754
/**
4855
* Optional. Labels to be added to the replication as the key value pairs.
4956
* The value may be {@code null}.
5057
*/
5158
@com.google.api.client.util.Key
5259
private java.util.Map<String, java.lang.String> labels;
5360

61+
/**
62+
* Optional. Constituent volume count for large volume.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.Integer largeVolumeConstituentCount;
67+
5468
/**
5569
* Required. Name of the user's local source cluster to be peered with the destination cluster.
5670
* The value may be {@code null}.
@@ -87,6 +101,13 @@ public final class HybridReplicationParameters extends com.google.api.client.jso
87101
@com.google.api.client.util.Key
88102
private java.lang.String replication;
89103

104+
/**
105+
* Optional. Replication Schedule for the replication created.
106+
* The value may be {@code null}.
107+
*/
108+
@com.google.api.client.util.Key
109+
private java.lang.String replicationSchedule;
110+
90111
/**
91112
* Optional. Name of source cluster location associated with the Hybrid replication. This is a
92113
* free-form field for the display purpose only.
@@ -123,6 +144,23 @@ public HybridReplicationParameters setDescription(java.lang.String description)
123144
return this;
124145
}
125146

147+
/**
148+
* Optional. Type of the hybrid replication.
149+
* @return value or {@code null} for none
150+
*/
151+
public java.lang.String getHybridReplicationType() {
152+
return hybridReplicationType;
153+
}
154+
155+
/**
156+
* Optional. Type of the hybrid replication.
157+
* @param hybridReplicationType hybridReplicationType or {@code null} for none
158+
*/
159+
public HybridReplicationParameters setHybridReplicationType(java.lang.String hybridReplicationType) {
160+
this.hybridReplicationType = hybridReplicationType;
161+
return this;
162+
}
163+
126164
/**
127165
* Optional. Labels to be added to the replication as the key value pairs.
128166
* @return value or {@code null} for none
@@ -140,6 +178,23 @@ public HybridReplicationParameters setLabels(java.util.Map<String, java.lang.Str
140178
return this;
141179
}
142180

181+
/**
182+
* Optional. Constituent volume count for large volume.
183+
* @return value or {@code null} for none
184+
*/
185+
public java.lang.Integer getLargeVolumeConstituentCount() {
186+
return largeVolumeConstituentCount;
187+
}
188+
189+
/**
190+
* Optional. Constituent volume count for large volume.
191+
* @param largeVolumeConstituentCount largeVolumeConstituentCount or {@code null} for none
192+
*/
193+
public HybridReplicationParameters setLargeVolumeConstituentCount(java.lang.Integer largeVolumeConstituentCount) {
194+
this.largeVolumeConstituentCount = largeVolumeConstituentCount;
195+
return this;
196+
}
197+
143198
/**
144199
* Required. Name of the user's local source cluster to be peered with the destination cluster.
145200
* @return value or {@code null} for none
@@ -227,6 +282,23 @@ public HybridReplicationParameters setReplication(java.lang.String replication)
227282
return this;
228283
}
229284

285+
/**
286+
* Optional. Replication Schedule for the replication created.
287+
* @return value or {@code null} for none
288+
*/
289+
public java.lang.String getReplicationSchedule() {
290+
return replicationSchedule;
291+
}
292+
293+
/**
294+
* Optional. Replication Schedule for the replication created.
295+
* @param replicationSchedule replicationSchedule or {@code null} for none
296+
*/
297+
public HybridReplicationParameters setReplicationSchedule(java.lang.String replicationSchedule) {
298+
this.replicationSchedule = replicationSchedule;
299+
return this;
300+
}
301+
230302
@Override
231303
public HybridReplicationParameters set(String fieldName, Object value) {
232304
return (HybridReplicationParameters) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,14 @@ public final class Replication extends com.google.api.client.json.GenericJson {
9090
@com.google.api.client.util.Key
9191
private java.lang.String hybridReplicationType;
9292

93+
/**
94+
* Output only. Copy pastable snapmirror commands to be executed on onprem cluster by the
95+
* customer.
96+
* The value may be {@code null}.
97+
*/
98+
@com.google.api.client.util.Key
99+
private UserCommands hybridReplicationUserCommands;
100+
93101
/**
94102
* Resource labels to represent user provided metadata.
95103
* The value may be {@code null}.
@@ -299,6 +307,25 @@ public Replication setHybridReplicationType(java.lang.String hybridReplicationTy
299307
return this;
300308
}
301309

310+
/**
311+
* Output only. Copy pastable snapmirror commands to be executed on onprem cluster by the
312+
* customer.
313+
* @return value or {@code null} for none
314+
*/
315+
public UserCommands getHybridReplicationUserCommands() {
316+
return hybridReplicationUserCommands;
317+
}
318+
319+
/**
320+
* Output only. Copy pastable snapmirror commands to be executed on onprem cluster by the
321+
* customer.
322+
* @param hybridReplicationUserCommands hybridReplicationUserCommands or {@code null} for none
323+
*/
324+
public Replication setHybridReplicationUserCommands(UserCommands hybridReplicationUserCommands) {
325+
this.hybridReplicationUserCommands = hybridReplicationUserCommands;
326+
return this;
327+
}
328+
302329
/**
303330
* Resource labels to represent user provided metadata.
304331
* @return value or {@code null} for none
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+
* UserCommands contains the commands to be executed by the customer.
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 UserCommands extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. List of commands to be executed by the customer.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> commands;
38+
39+
/**
40+
* Output only. List of commands to be executed by the customer.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<java.lang.String> getCommands() {
44+
return commands;
45+
}
46+
47+
/**
48+
* Output only. List of commands to be executed by the customer.
49+
* @param commands commands or {@code null} for none
50+
*/
51+
public UserCommands setCommands(java.util.List<java.lang.String> commands) {
52+
this.commands = commands;
53+
return this;
54+
}
55+
56+
@Override
57+
public UserCommands set(String fieldName, Object value) {
58+
return (UserCommands) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public UserCommands clone() {
63+
return (UserCommands) super.clone();
64+
}
65+
66+
}

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

0 commit comments

Comments
 (0)