You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-networkconnectivity/v1alpha1/2.0.0/com/google/api/services/networkconnectivity/v1alpha1/model/InternalRange.java
+21-9Lines changed: 21 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,9 @@ public final class InternalRange extends com.google.api.client.json.GenericJson
47
47
privatejava.lang.Stringdescription;
48
48
49
49
/**
50
-
* IP range that this internal range defines.
50
+
* IP range that this internal range defines. NOTE: IPv6 ranges are limited to
51
+
* usage=EXTERNAL_TO_VPC and peering=FOR_SELF. NOTE: For IPv6 Ranges this field is compulsory,
52
+
* i.e. the address range must be specified explicitly.
51
53
* The value may be {@code null}.
52
54
*/
53
55
@com.google.api.client.util.Key
@@ -102,10 +104,12 @@ public final class InternalRange extends com.google.api.client.json.GenericJson
102
104
privatejava.lang.Stringpeering;
103
105
104
106
/**
105
-
* An alternative to ip_cidr_range. Can be set when trying to create a reservation that
107
+
* An alternative to ip_cidr_range. Can be set when trying to create an IPv4 reservation that
106
108
* automatically finds a free range of the given size. If both ip_cidr_range and prefix_length are
107
109
* set, there is an error if the range sizes do not match. Can also be used during updates to
108
-
* change the range size.
110
+
* change the range size. NOTE: For IPv6 this field only works if ip_cidr_range is set as well,
111
+
* and both fields must match. In other words, with IPv6 this field only works as a redundant
112
+
* parameter.
109
113
* The value may be {@code null}.
110
114
*/
111
115
@com.google.api.client.util.Key
@@ -181,15 +185,19 @@ public InternalRange setDescription(java.lang.String description) {
181
185
}
182
186
183
187
/**
184
-
* IP range that this internal range defines.
188
+
* IP range that this internal range defines. NOTE: IPv6 ranges are limited to
189
+
* usage=EXTERNAL_TO_VPC and peering=FOR_SELF. NOTE: For IPv6 Ranges this field is compulsory,
190
+
* i.e. the address range must be specified explicitly.
185
191
* @return value or {@code null} for none
186
192
*/
187
193
publicjava.lang.StringgetIpCidrRange() {
188
194
returnipCidrRange;
189
195
}
190
196
191
197
/**
192
-
* IP range that this internal range defines.
198
+
* IP range that this internal range defines. NOTE: IPv6 ranges are limited to
199
+
* usage=EXTERNAL_TO_VPC and peering=FOR_SELF. NOTE: For IPv6 Ranges this field is compulsory,
200
+
* i.e. the address range must be specified explicitly.
193
201
* @param ipCidrRange ipCidrRange or {@code null} for none
0 commit comments