Skip to content

Commit 7f118bb

Browse files
1 parent 7b20cda commit 7f118bb

File tree

4 files changed

+27
-15
lines changed

4 files changed

+27
-15
lines changed

clients/google-api-services-networkconnectivity/v1alpha1/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-networkconnectivity</artifactId>
25-
<version>v1alpha1-rev20240807-2.0.0</version>
25+
<version>v1alpha1-rev20240911-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-networkconnectivity:v1alpha1-rev20240807-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkconnectivity:v1alpha1-rev20240911-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-networkconnectivity/v1alpha1/2.0.0/com/google/api/services/networkconnectivity/v1alpha1/model/InternalRange.java

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ public final class InternalRange extends com.google.api.client.json.GenericJson
4747
private java.lang.String description;
4848

4949
/**
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.
5153
* The value may be {@code null}.
5254
*/
5355
@com.google.api.client.util.Key
@@ -102,10 +104,12 @@ public final class InternalRange extends com.google.api.client.json.GenericJson
102104
private java.lang.String peering;
103105

104106
/**
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
106108
* automatically finds a free range of the given size. If both ip_cidr_range and prefix_length are
107109
* 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.
109113
* The value may be {@code null}.
110114
*/
111115
@com.google.api.client.util.Key
@@ -181,15 +185,19 @@ public InternalRange setDescription(java.lang.String description) {
181185
}
182186

183187
/**
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.
185191
* @return value or {@code null} for none
186192
*/
187193
public java.lang.String getIpCidrRange() {
188194
return ipCidrRange;
189195
}
190196

191197
/**
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.
193201
* @param ipCidrRange ipCidrRange or {@code null} for none
194202
*/
195203
public InternalRange setIpCidrRange(java.lang.String ipCidrRange) {
@@ -312,21 +320,25 @@ public InternalRange setPeering(java.lang.String peering) {
312320
}
313321

314322
/**
315-
* An alternative to ip_cidr_range. Can be set when trying to create a reservation that
323+
* An alternative to ip_cidr_range. Can be set when trying to create an IPv4 reservation that
316324
* automatically finds a free range of the given size. If both ip_cidr_range and prefix_length are
317325
* set, there is an error if the range sizes do not match. Can also be used during updates to
318-
* change the range size.
326+
* change the range size. NOTE: For IPv6 this field only works if ip_cidr_range is set as well,
327+
* and both fields must match. In other words, with IPv6 this field only works as a redundant
328+
* parameter.
319329
* @return value or {@code null} for none
320330
*/
321331
public java.lang.Integer getPrefixLength() {
322332
return prefixLength;
323333
}
324334

325335
/**
326-
* An alternative to ip_cidr_range. Can be set when trying to create a reservation that
336+
* An alternative to ip_cidr_range. Can be set when trying to create an IPv4 reservation that
327337
* automatically finds a free range of the given size. If both ip_cidr_range and prefix_length are
328338
* set, there is an error if the range sizes do not match. Can also be used during updates to
329-
* change the range size.
339+
* change the range size. NOTE: For IPv6 this field only works if ip_cidr_range is set as well,
340+
* and both fields must match. In other words, with IPv6 this field only works as a redundant
341+
* parameter.
330342
* @param prefixLength prefixLength or {@code null} for none
331343
*/
332344
public InternalRange setPrefixLength(java.lang.Integer prefixLength) {

clients/google-api-services-networkconnectivity/v1alpha1/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-networkconnectivity</artifactId>
11-
<version>v1alpha1-rev20240807-2.0.0</version>
12-
<name>Network Connectivity API v1alpha1-rev20240807-2.0.0</name>
11+
<version>v1alpha1-rev20240911-2.0.0</version>
12+
<name>Network Connectivity API v1alpha1-rev20240911-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-networkconnectivity/v1alpha1/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-networkconnectivity</artifactId>
25-
<version>v1alpha1-rev20240807-2.0.0</version>
25+
<version>v1alpha1-rev20240911-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-networkconnectivity:v1alpha1-rev20240807-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkconnectivity:v1alpha1-rev20240911-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)