Skip to content

Commit a8c386b

Browse files
1 parent f9e9c52 commit a8c386b

12 files changed

+108
-120
lines changed

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

clients/google-api-services-beyondcorp/v1/2.0.0/com/google/api/services/beyondcorp/v1/model/GoogleCloudBeyondcorpSecuritygatewaysV1Hub.java

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,32 +30,26 @@
3030
public final class GoogleCloudBeyondcorpSecuritygatewaysV1Hub extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
34-
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
35-
* the Hub along with the total IPs allocated to handle the capacity limits.
33+
* Optional. Internet Gateway configuration.
3634
* The value may be {@code null}.
3735
*/
3836
@com.google.api.client.util.Key
39-
private GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig natGatewayConfig;
37+
private GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway internetGateway;
4038

4139
/**
42-
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
43-
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
44-
* the Hub along with the total IPs allocated to handle the capacity limits.
40+
* Optional. Internet Gateway configuration.
4541
* @return value or {@code null} for none
4642
*/
47-
public GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig getNatGatewayConfig() {
48-
return natGatewayConfig;
43+
public GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway getInternetGateway() {
44+
return internetGateway;
4945
}
5046

5147
/**
52-
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
53-
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
54-
* the Hub along with the total IPs allocated to handle the capacity limits.
55-
* @param natGatewayConfig natGatewayConfig or {@code null} for none
48+
* Optional. Internet Gateway configuration.
49+
* @param internetGateway internetGateway or {@code null} for none
5650
*/
57-
public GoogleCloudBeyondcorpSecuritygatewaysV1Hub setNatGatewayConfig(GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig natGatewayConfig) {
58-
this.natGatewayConfig = natGatewayConfig;
51+
public GoogleCloudBeyondcorpSecuritygatewaysV1Hub setInternetGateway(GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway internetGateway) {
52+
this.internetGateway = internetGateway;
5953
return this;
6054
}
6155

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.beyondcorp.v1.model;
1818

1919
/**
20-
* Represents the NAT Gateway configuration.
20+
* Represents the Internet Gateway configuration.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the BeyondCorp API. For a detailed explanation see:
@@ -27,40 +27,40 @@
2727
* @author Google, Inc.
2828
*/
2929
@SuppressWarnings("javadoc")
30-
public final class GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig extends com.google.api.client.json.GenericJson {
30+
public final class GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Output only. List of NAT IPs that will be used for establishing connection to the endpoints.
33+
* Output only. List of IP addresses assigned to the Cloud NAT.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
37-
private java.util.List<java.lang.String> natIps;
37+
private java.util.List<java.lang.String> assignedIps;
3838

3939
/**
40-
* Output only. List of NAT IPs that will be used for establishing connection to the endpoints.
40+
* Output only. List of IP addresses assigned to the Cloud NAT.
4141
* @return value or {@code null} for none
4242
*/
43-
public java.util.List<java.lang.String> getNatIps() {
44-
return natIps;
43+
public java.util.List<java.lang.String> getAssignedIps() {
44+
return assignedIps;
4545
}
4646

4747
/**
48-
* Output only. List of NAT IPs that will be used for establishing connection to the endpoints.
49-
* @param natIps natIps or {@code null} for none
48+
* Output only. List of IP addresses assigned to the Cloud NAT.
49+
* @param assignedIps assignedIps or {@code null} for none
5050
*/
51-
public GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig setNatIps(java.util.List<java.lang.String> natIps) {
52-
this.natIps = natIps;
51+
public GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway setAssignedIps(java.util.List<java.lang.String> assignedIps) {
52+
this.assignedIps = assignedIps;
5353
return this;
5454
}
5555

5656
@Override
57-
public GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig set(String fieldName, Object value) {
58-
return (GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig) super.set(fieldName, value);
57+
public GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway set(String fieldName, Object value) {
58+
return (GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway) super.set(fieldName, value);
5959
}
6060

6161
@Override
62-
public GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig clone() {
63-
return (GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig) super.clone();
62+
public GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway clone() {
63+
return (GoogleCloudBeyondcorpSecuritygatewaysV1InternetGateway) super.clone();
6464
}
6565

6666
}

clients/google-api-services-beyondcorp/v1/2.0.0/com/google/api/services/beyondcorp/v1/model/GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest.java

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,19 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Required. List of Peering connection information.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Peering> peerings;
38+
39+
static {
40+
// hack to force ProGuard to consider GoogleCloudBeyondcorpSecuritygatewaysV1Peering used, since otherwise it would be stripped out
41+
// see https://github.com/google/google-api-java-client/issues/543
42+
com.google.api.client.util.Data.nullOf(GoogleCloudBeyondcorpSecuritygatewaysV1Peering.class);
43+
}
44+
3245
/**
3346
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
3447
* you must retry your request, the server will know to ignore the request if it has already been
@@ -53,15 +66,19 @@ public final class GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest exte
5366

5467
/**
5568
* Required. List of Peering connection information.
56-
* The value may be {@code null}.
69+
* @return value or {@code null} for none
5770
*/
58-
@com.google.api.client.util.Key
59-
private java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Peering> vpcPeerings;
71+
public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Peering> getPeerings() {
72+
return peerings;
73+
}
6074

61-
static {
62-
// hack to force ProGuard to consider GoogleCloudBeyondcorpSecuritygatewaysV1Peering used, since otherwise it would be stripped out
63-
// see https://github.com/google/google-api-java-client/issues/543
64-
com.google.api.client.util.Data.nullOf(GoogleCloudBeyondcorpSecuritygatewaysV1Peering.class);
75+
/**
76+
* Required. List of Peering connection information.
77+
* @param peerings peerings or {@code null} for none
78+
*/
79+
public GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest setPeerings(java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Peering> peerings) {
80+
this.peerings = peerings;
81+
return this;
6582
}
6683

6784
/**
@@ -114,23 +131,6 @@ public GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest setValidateOnly(
114131
return this;
115132
}
116133

117-
/**
118-
* Required. List of Peering connection information.
119-
* @return value or {@code null} for none
120-
*/
121-
public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Peering> getVpcPeerings() {
122-
return vpcPeerings;
123-
}
124-
125-
/**
126-
* Required. List of Peering connection information.
127-
* @param vpcPeerings vpcPeerings or {@code null} for none
128-
*/
129-
public GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest setVpcPeerings(java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Peering> vpcPeerings) {
130-
this.vpcPeerings = vpcPeerings;
131-
return this;
132-
}
133-
134134
@Override
135135
public GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest set(String fieldName, Object value) {
136136
return (GoogleCloudBeyondcorpSecuritygatewaysV1SetPeeringRequest) super.set(fieldName, value);

clients/google-api-services-beyondcorp/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-beyondcorp</artifactId>
11-
<version>v1-rev20240925-2.0.0</version>
12-
<name>BeyondCorp API v1-rev20240925-2.0.0</name>
11+
<version>v1-rev20241004-2.0.0</version>
12+
<name>BeyondCorp API v1-rev20241004-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-beyondcorp/v1alpha/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-beyondcorp</artifactId>
25-
<version>v1alpha-rev20240925-2.0.0</version>
25+
<version>v1alpha-rev20241004-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-beyondcorp:v1alpha-rev20240925-2.0.0'
38+
implementation 'com.google.apis:google-api-services-beyondcorp:v1alpha-rev20241004-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-beyondcorp/v1alpha/2.0.0/com/google/api/services/beyondcorp/v1alpha/model/GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub.java

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,32 +30,26 @@
3030
public final class GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
34-
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
35-
* the Hub along with the total IPs allocated to handle the capacity limits.
33+
* Optional. Internet Gateway configuration.
3634
* The value may be {@code null}.
3735
*/
3836
@com.google.api.client.util.Key
39-
private GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig natGatewayConfig;
37+
private GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway internetGateway;
4038

4139
/**
42-
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
43-
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
44-
* the Hub along with the total IPs allocated to handle the capacity limits.
40+
* Optional. Internet Gateway configuration.
4541
* @return value or {@code null} for none
4642
*/
47-
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig getNatGatewayConfig() {
48-
return natGatewayConfig;
43+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway getInternetGateway() {
44+
return internetGateway;
4945
}
5046

5147
/**
52-
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
53-
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
54-
* the Hub along with the total IPs allocated to handle the capacity limits.
55-
* @param natGatewayConfig natGatewayConfig or {@code null} for none
48+
* Optional. Internet Gateway configuration.
49+
* @param internetGateway internetGateway or {@code null} for none
5650
*/
57-
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub setNatGatewayConfig(GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig natGatewayConfig) {
58-
this.natGatewayConfig = natGatewayConfig;
51+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub setInternetGateway(GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway internetGateway) {
52+
this.internetGateway = internetGateway;
5953
return this;
6054
}
6155

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.beyondcorp.v1alpha.model;
1818

1919
/**
20-
* Represents the NAT Gateway configuration.
20+
* Represents the Internet Gateway configuration.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the BeyondCorp API. For a detailed explanation see:
@@ -27,40 +27,40 @@
2727
* @author Google, Inc.
2828
*/
2929
@SuppressWarnings("javadoc")
30-
public final class GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig extends com.google.api.client.json.GenericJson {
30+
public final class GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Output only. List of NAT IPs that will be used for establishing connection to the endpoints.
33+
* Output only. List of IP addresses assigned to the Cloud NAT.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
37-
private java.util.List<java.lang.String> natIps;
37+
private java.util.List<java.lang.String> assignedIps;
3838

3939
/**
40-
* Output only. List of NAT IPs that will be used for establishing connection to the endpoints.
40+
* Output only. List of IP addresses assigned to the Cloud NAT.
4141
* @return value or {@code null} for none
4242
*/
43-
public java.util.List<java.lang.String> getNatIps() {
44-
return natIps;
43+
public java.util.List<java.lang.String> getAssignedIps() {
44+
return assignedIps;
4545
}
4646

4747
/**
48-
* Output only. List of NAT IPs that will be used for establishing connection to the endpoints.
49-
* @param natIps natIps or {@code null} for none
48+
* Output only. List of IP addresses assigned to the Cloud NAT.
49+
* @param assignedIps assignedIps or {@code null} for none
5050
*/
51-
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig setNatIps(java.util.List<java.lang.String> natIps) {
52-
this.natIps = natIps;
51+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway setAssignedIps(java.util.List<java.lang.String> assignedIps) {
52+
this.assignedIps = assignedIps;
5353
return this;
5454
}
5555

5656
@Override
57-
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig set(String fieldName, Object value) {
58-
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig) super.set(fieldName, value);
57+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway set(String fieldName, Object value) {
58+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway) super.set(fieldName, value);
5959
}
6060

6161
@Override
62-
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig clone() {
63-
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaNatGatewayConfig) super.clone();
62+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway clone() {
63+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaInternetGateway) super.clone();
6464
}
6565

6666
}

0 commit comments

Comments
 (0)