Skip to content

Commit 5ec85f7

Browse files
1 parent 359901e commit 5ec85f7

File tree

4 files changed

+27
-21
lines changed

4 files changed

+27
-21
lines changed

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

clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Endpoint.java

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,17 @@ public final class Endpoint extends com.google.api.client.json.GenericJson {
143143
private java.lang.String loadBalancerType;
144144

145145
/**
146-
* A VPC network URI. Used according to the `network_type`. Relevant only for the source
147-
* endpoints.
146+
* A VPC network URI. For source endpoints, used according to the `network_type`. For destination
147+
* endpoints, used only when the source is an external IP address endpoint, and the destination is
148+
* an internal IP address endpoint.
148149
* The value may be {@code null}.
149150
*/
150151
@com.google.api.client.util.Key
151152
private java.lang.String network;
152153

153154
/**
154-
* Type of the network where the endpoint is located. Relevant only for the source endpoints.
155+
* For source endpoints, type of the network where the endpoint is located. Not relevant for
156+
* destination endpoints.
155157
* The value may be {@code null}.
156158
*/
157159
@com.google.api.client.util.Key
@@ -165,8 +167,8 @@ public final class Endpoint extends com.google.api.client.json.GenericJson {
165167
private java.lang.Integer port;
166168

167169
/**
168-
* Endpoint project ID. Used according to the `network_type`. Relevant only for the source
169-
* endpoints.
170+
* For source endpoints, endpoint project ID. Used according to the `network_type`. Not relevant
171+
* for destination endpoints.
170172
* The value may be {@code null}.
171173
*/
172174
@com.google.api.client.util.Key
@@ -455,17 +457,19 @@ public Endpoint setLoadBalancerType(java.lang.String loadBalancerType) {
455457
}
456458

457459
/**
458-
* A VPC network URI. Used according to the `network_type`. Relevant only for the source
459-
* endpoints.
460+
* A VPC network URI. For source endpoints, used according to the `network_type`. For destination
461+
* endpoints, used only when the source is an external IP address endpoint, and the destination is
462+
* an internal IP address endpoint.
460463
* @return value or {@code null} for none
461464
*/
462465
public java.lang.String getNetwork() {
463466
return network;
464467
}
465468

466469
/**
467-
* A VPC network URI. Used according to the `network_type`. Relevant only for the source
468-
* endpoints.
470+
* A VPC network URI. For source endpoints, used according to the `network_type`. For destination
471+
* endpoints, used only when the source is an external IP address endpoint, and the destination is
472+
* an internal IP address endpoint.
469473
* @param network network or {@code null} for none
470474
*/
471475
public Endpoint setNetwork(java.lang.String network) {
@@ -474,15 +478,17 @@ public Endpoint setNetwork(java.lang.String network) {
474478
}
475479

476480
/**
477-
* Type of the network where the endpoint is located. Relevant only for the source endpoints.
481+
* For source endpoints, type of the network where the endpoint is located. Not relevant for
482+
* destination endpoints.
478483
* @return value or {@code null} for none
479484
*/
480485
public java.lang.String getNetworkType() {
481486
return networkType;
482487
}
483488

484489
/**
485-
* Type of the network where the endpoint is located. Relevant only for the source endpoints.
490+
* For source endpoints, type of the network where the endpoint is located. Not relevant for
491+
* destination endpoints.
486492
* @param networkType networkType or {@code null} for none
487493
*/
488494
public Endpoint setNetworkType(java.lang.String networkType) {
@@ -508,17 +514,17 @@ public Endpoint setPort(java.lang.Integer port) {
508514
}
509515

510516
/**
511-
* Endpoint project ID. Used according to the `network_type`. Relevant only for the source
512-
* endpoints.
517+
* For source endpoints, endpoint project ID. Used according to the `network_type`. Not relevant
518+
* for destination endpoints.
513519
* @return value or {@code null} for none
514520
*/
515521
public java.lang.String getProjectId() {
516522
return projectId;
517523
}
518524

519525
/**
520-
* Endpoint project ID. Used according to the `network_type`. Relevant only for the source
521-
* endpoints.
526+
* For source endpoints, endpoint project ID. Used according to the `network_type`. Not relevant
527+
* for destination endpoints.
522528
* @param projectId projectId or {@code null} for none
523529
*/
524530
public Endpoint setProjectId(java.lang.String projectId) {

clients/google-api-services-networkmanagement/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-networkmanagement</artifactId>
11-
<version>v1beta1-rev20260114-2.0.0</version>
12-
<name>Network Management API v1beta1-rev20260114-2.0.0</name>
11+
<version>v1beta1-rev20260121-2.0.0</version>
12+
<name>Network Management API v1beta1-rev20260121-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)