@@ -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