@@ -154,14 +154,17 @@ public final class Node extends com.google.api.client.json.GenericJson {
154
154
private java .lang .String name ;
155
155
156
156
/**
157
- * Network configurations for the TPU node.
157
+ * Network configurations for the TPU node. network_config and network_configs are mutually
158
+ * exclusive, you can only specify one of them. If both are specified, an error will be returned.
158
159
* The value may be {@code null}.
159
160
*/
160
161
@ com .google .api .client .util .Key
161
162
private NetworkConfig networkConfig ;
162
163
163
164
/**
164
- * Optional. Repeated network configurations for the TPU node.
165
+ * Optional. Repeated network configurations for the TPU node. This field is used to specify
166
+ * multiple networks configs for the TPU node. network_config and network_configs are mutually
167
+ * exclusive, you can only specify one of them. If both are specified, an error will be returned.
165
168
* The value may be {@code null}.
166
169
*/
167
170
@ com .google .api .client .util .Key
@@ -537,15 +540,17 @@ public Node setName(java.lang.String name) {
537
540
}
538
541
539
542
/**
540
- * Network configurations for the TPU node.
543
+ * Network configurations for the TPU node. network_config and network_configs are mutually
544
+ * exclusive, you can only specify one of them. If both are specified, an error will be returned.
541
545
* @return value or {@code null} for none
542
546
*/
543
547
public NetworkConfig getNetworkConfig () {
544
548
return networkConfig ;
545
549
}
546
550
547
551
/**
548
- * Network configurations for the TPU node.
552
+ * Network configurations for the TPU node. network_config and network_configs are mutually
553
+ * exclusive, you can only specify one of them. If both are specified, an error will be returned.
549
554
* @param networkConfig networkConfig or {@code null} for none
550
555
*/
551
556
public Node setNetworkConfig (NetworkConfig networkConfig ) {
@@ -554,15 +559,19 @@ public Node setNetworkConfig(NetworkConfig networkConfig) {
554
559
}
555
560
556
561
/**
557
- * Optional. Repeated network configurations for the TPU node.
562
+ * Optional. Repeated network configurations for the TPU node. This field is used to specify
563
+ * multiple networks configs for the TPU node. network_config and network_configs are mutually
564
+ * exclusive, you can only specify one of them. If both are specified, an error will be returned.
558
565
* @return value or {@code null} for none
559
566
*/
560
567
public java .util .List <NetworkConfig > getNetworkConfigs () {
561
568
return networkConfigs ;
562
569
}
563
570
564
571
/**
565
- * Optional. Repeated network configurations for the TPU node.
572
+ * Optional. Repeated network configurations for the TPU node. This field is used to specify
573
+ * multiple networks configs for the TPU node. network_config and network_configs are mutually
574
+ * exclusive, you can only specify one of them. If both are specified, an error will be returned.
566
575
* @param networkConfigs networkConfigs or {@code null} for none
567
576
*/
568
577
public Node setNetworkConfigs (java .util .List <NetworkConfig > networkConfigs ) {
0 commit comments