Skip to content

Commit 34a17af

Browse files
1 parent 88fd656 commit 34a17af

28 files changed

+17025
-7296
lines changed

clients/google-api-services-compute/beta/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-compute</artifactId>
25-
<version>beta-rev20250909-2.0.0</version>
25+
<version>beta-rev20250916-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-compute:beta-rev20250909-2.0.0'
38+
implementation 'com.google.apis:google-api-services-compute:beta-rev20250916-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/Compute.java

Lines changed: 12838 additions & 7289 deletions
Large diffs are not rendered by default.

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/model/Address.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,19 @@ public final class Address extends com.google.api.client.json.GenericJson {
6969
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
7070
private java.math.BigInteger id;
7171

72+
/**
73+
* Reference to the source of external IPv4 addresses, like a PublicDelegatedPrefix (PDP) for
74+
* BYOIP. The PDP must support enhanced IPv4 allocations. Use one of the following formats to
75+
* specify a PDP when reserving an external IPv4 address using BYOIP. - Full resource URL, as in
76+
* https://www.googleapis.com/compute/v1/projects/projectId/regions/region
77+
* /publicDelegatedPrefixes/pdp-name - Partial URL, as in -
78+
* projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name -
79+
* regions/region/publicDelegatedPrefixes/pdp-name
80+
* The value may be {@code null}.
81+
*/
82+
@com.google.api.client.util.Key
83+
private java.lang.String ipCollection;
84+
7285
/**
7386
* The IP version that will be used by this address. Valid options are IPV4 or IPV6.
7487
* The value may be {@code null}.
@@ -294,6 +307,35 @@ public Address setId(java.math.BigInteger id) {
294307
return this;
295308
}
296309

310+
/**
311+
* Reference to the source of external IPv4 addresses, like a PublicDelegatedPrefix (PDP) for
312+
* BYOIP. The PDP must support enhanced IPv4 allocations. Use one of the following formats to
313+
* specify a PDP when reserving an external IPv4 address using BYOIP. - Full resource URL, as in
314+
* https://www.googleapis.com/compute/v1/projects/projectId/regions/region
315+
* /publicDelegatedPrefixes/pdp-name - Partial URL, as in -
316+
* projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name -
317+
* regions/region/publicDelegatedPrefixes/pdp-name
318+
* @return value or {@code null} for none
319+
*/
320+
public java.lang.String getIpCollection() {
321+
return ipCollection;
322+
}
323+
324+
/**
325+
* Reference to the source of external IPv4 addresses, like a PublicDelegatedPrefix (PDP) for
326+
* BYOIP. The PDP must support enhanced IPv4 allocations. Use one of the following formats to
327+
* specify a PDP when reserving an external IPv4 address using BYOIP. - Full resource URL, as in
328+
* https://www.googleapis.com/compute/v1/projects/projectId/regions/region
329+
* /publicDelegatedPrefixes/pdp-name - Partial URL, as in -
330+
* projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name -
331+
* regions/region/publicDelegatedPrefixes/pdp-name
332+
* @param ipCollection ipCollection or {@code null} for none
333+
*/
334+
public Address setIpCollection(java.lang.String ipCollection) {
335+
this.ipCollection = ipCollection;
336+
return this;
337+
}
338+
297339
/**
298340
* The IP version that will be used by this address. Valid options are IPV4 or IPV6.
299341
* @return value or {@code null} for none

0 commit comments

Comments
 (0)