Skip to content

Commit ceabcce

Browse files
1 parent c3e14b6 commit ceabcce

File tree

4 files changed

+45
-6
lines changed

4 files changed

+45
-6
lines changed

clients/google-api-services-servicenetworking/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-servicenetworking</artifactId>
25-
<version>v1-rev20240716-2.0.0</version>
25+
<version>v1-rev20240819-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-servicenetworking:v1-rev20240716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicenetworking:v1-rev20240819-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/model/AddSubnetworkRequest.java

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,18 @@ public final class AddSubnetworkRequest extends com.google.api.client.json.Gener
182182
@com.google.api.client.util.Key
183183
private java.util.List<SecondaryIpRangeSpec> secondaryIpRangeSpecs;
184184

185+
/**
186+
* Optional. Skips validating if the requested_address is in use by SN VPC’s peering group.
187+
* Compute Engine will still perform this check and fail the request if the requested_address is
188+
* in use. Note that Compute Engine does not check for the existence of dynamic routes when
189+
* performing this check. Caller of this API should make sure that there are no dynamic routes
190+
* overlapping with the requested_address/prefix_length IP address range otherwise the created
191+
* subnet could cause misrouting.
192+
* The value may be {@code null}.
193+
*/
194+
@com.google.api.client.util.Key
195+
private java.lang.Boolean skipRequestedAddressValidation;
196+
185197
/**
186198
* Required. A name for the new subnet. For information about the naming requirements, see
187199
* [subnetwork](/compute/docs/reference/rest/v1/subnetworks) in the Compute API documentation.
@@ -561,6 +573,33 @@ public AddSubnetworkRequest setSecondaryIpRangeSpecs(java.util.List<SecondaryIpR
561573
return this;
562574
}
563575

576+
/**
577+
* Optional. Skips validating if the requested_address is in use by SN VPC’s peering group.
578+
* Compute Engine will still perform this check and fail the request if the requested_address is
579+
* in use. Note that Compute Engine does not check for the existence of dynamic routes when
580+
* performing this check. Caller of this API should make sure that there are no dynamic routes
581+
* overlapping with the requested_address/prefix_length IP address range otherwise the created
582+
* subnet could cause misrouting.
583+
* @return value or {@code null} for none
584+
*/
585+
public java.lang.Boolean getSkipRequestedAddressValidation() {
586+
return skipRequestedAddressValidation;
587+
}
588+
589+
/**
590+
* Optional. Skips validating if the requested_address is in use by SN VPC’s peering group.
591+
* Compute Engine will still perform this check and fail the request if the requested_address is
592+
* in use. Note that Compute Engine does not check for the existence of dynamic routes when
593+
* performing this check. Caller of this API should make sure that there are no dynamic routes
594+
* overlapping with the requested_address/prefix_length IP address range otherwise the created
595+
* subnet could cause misrouting.
596+
* @param skipRequestedAddressValidation skipRequestedAddressValidation or {@code null} for none
597+
*/
598+
public AddSubnetworkRequest setSkipRequestedAddressValidation(java.lang.Boolean skipRequestedAddressValidation) {
599+
this.skipRequestedAddressValidation = skipRequestedAddressValidation;
600+
return this;
601+
}
602+
564603
/**
565604
* Required. A name for the new subnet. For information about the naming requirements, see
566605
* [subnetwork](/compute/docs/reference/rest/v1/subnetworks) in the Compute API documentation.

clients/google-api-services-servicenetworking/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-servicenetworking</artifactId>
11-
<version>v1-rev20240716-2.0.0</version>
12-
<name>Service Networking API v1-rev20240716-2.0.0</name>
11+
<version>v1-rev20240819-2.0.0</version>
12+
<name>Service Networking API v1-rev20240819-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-servicenetworking/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-servicenetworking</artifactId>
25-
<version>v1-rev20240716-2.0.0</version>
25+
<version>v1-rev20240819-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-servicenetworking:v1-rev20240716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicenetworking:v1-rev20240819-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)