Skip to content

Commit 06293ca

Browse files
1 parent 03beeee commit 06293ca

File tree

8 files changed

+66
-12
lines changed

8 files changed

+66
-12
lines changed

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

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/Gateway.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ public final class Gateway extends com.google.api.client.json.GenericJson {
4141
@com.google.api.client.util.Key
4242
private java.util.List<java.lang.String> addresses;
4343

44+
/**
45+
* Optional. If true, the Gateway will listen on all ports. This is mutually exclusive with the
46+
* `ports` field. This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.lang.Boolean allPorts;
51+
4452
/**
4553
* Optional. If true, the gateway will allow traffic from clients outside of the region where the
4654
* gateway is located. This field is configurable only for gateways of type SECURE_WEB_GATEWAY.
@@ -211,6 +219,25 @@ public Gateway setAddresses(java.util.List<java.lang.String> addresses) {
211219
return this;
212220
}
213221

222+
/**
223+
* Optional. If true, the Gateway will listen on all ports. This is mutually exclusive with the
224+
* `ports` field. This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
225+
* @return value or {@code null} for none
226+
*/
227+
public java.lang.Boolean getAllPorts() {
228+
return allPorts;
229+
}
230+
231+
/**
232+
* Optional. If true, the Gateway will listen on all ports. This is mutually exclusive with the
233+
* `ports` field. This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
234+
* @param allPorts allPorts or {@code null} for none
235+
*/
236+
public Gateway setAllPorts(java.lang.Boolean allPorts) {
237+
this.allPorts = allPorts;
238+
return this;
239+
}
240+
214241
/**
215242
* Optional. If true, the gateway will allow traffic from clients outside of the region where the
216243
* gateway is located. This field is configurable only for gateways of type SECURE_WEB_GATEWAY.

clients/google-api-services-networkservices/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-networkservices</artifactId>
11-
<version>v1-rev20260319-2.0.0</version>
12-
<name>Network Services API v1-rev20260319-2.0.0</name>
11+
<version>v1-rev20260330-2.0.0</version>
12+
<name>Network Services API v1-rev20260330-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-networkservices/v1beta1/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-networkservices</artifactId>
25-
<version>v1beta1-rev20260319-2.0.0</version>
25+
<version>v1beta1-rev20260330-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-networkservices:v1beta1-rev20260319-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkservices:v1beta1-rev20260330-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-networkservices/v1beta1/2.0.0/com/google/api/services/networkservices/v1beta1/model/Gateway.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ public final class Gateway extends com.google.api.client.json.GenericJson {
4141
@com.google.api.client.util.Key
4242
private java.util.List<java.lang.String> addresses;
4343

44+
/**
45+
* Optional. If true, the Gateway will listen on all ports. This is mutually exclusive with the
46+
* `ports` field. This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.lang.Boolean allPorts;
51+
4452
/**
4553
* Optional. If true, the gateway will allow traffic from clients outside of the region where the
4654
* gateway is located. This field is configurable only for gateways of type SECURE_WEB_GATEWAY.
@@ -211,6 +219,25 @@ public Gateway setAddresses(java.util.List<java.lang.String> addresses) {
211219
return this;
212220
}
213221

222+
/**
223+
* Optional. If true, the Gateway will listen on all ports. This is mutually exclusive with the
224+
* `ports` field. This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
225+
* @return value or {@code null} for none
226+
*/
227+
public java.lang.Boolean getAllPorts() {
228+
return allPorts;
229+
}
230+
231+
/**
232+
* Optional. If true, the Gateway will listen on all ports. This is mutually exclusive with the
233+
* `ports` field. This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
234+
* @param allPorts allPorts or {@code null} for none
235+
*/
236+
public Gateway setAllPorts(java.lang.Boolean allPorts) {
237+
this.allPorts = allPorts;
238+
return this;
239+
}
240+
214241
/**
215242
* Optional. If true, the gateway will allow traffic from clients outside of the region where the
216243
* gateway is located. This field is configurable only for gateways of type SECURE_WEB_GATEWAY.

clients/google-api-services-networkservices/v1beta1/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-networkservices</artifactId>
11-
<version>v1beta1-rev20260319-2.0.0</version>
12-
<name>Network Services API v1beta1-rev20260319-2.0.0</name>
11+
<version>v1beta1-rev20260330-2.0.0</version>
12+
<name>Network Services API v1beta1-rev20260330-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-networkservices/v1beta1/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-networkservices</artifactId>
25-
<version>v1beta1-rev20260319-2.0.0</version>
25+
<version>v1beta1-rev20260330-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-networkservices:v1beta1-rev20260319-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkservices:v1beta1-rev20260330-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)