From 84efe737812f71f2829a2a572023f36a02e6191f Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Fri, 6 Feb 2026 18:29:53 -0800
Subject: [PATCH] chore: regenerate networkmanagement client
---
.../v1/2.0.0/README.md | 4 +-
.../v1/NetworkManagement.java | 20 ++-
.../v1/model/GoogleManagedServiceInfo.java | 142 ------------------
.../networkmanagement/v1/model/Step.java | 24 ---
.../v1/2.0.0/pom.xml | 4 +-
.../v1/README.md | 4 +-
.../v1beta1/2.0.0/README.md | 4 +-
.../v1beta1/NetworkManagement.java | 20 ++-
.../v1beta1/model/Endpoint.java | 24 ---
.../model/GoogleManagedServiceInfo.java | 142 ------------------
.../networkmanagement/v1beta1/model/Step.java | 24 ---
.../v1beta1/2.0.0/pom.xml | 4 +-
.../v1beta1/README.md | 4 +-
13 files changed, 44 insertions(+), 376 deletions(-)
delete mode 100644 clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/GoogleManagedServiceInfo.java
delete mode 100644 clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/GoogleManagedServiceInfo.java
diff --git a/clients/google-api-services-networkmanagement/v1/2.0.0/README.md b/clients/google-api-services-networkmanagement/v1/2.0.0/README.md
index 9154387ea3c..905d4b6f6ef 100644
--- a/clients/google-api-services-networkmanagement/v1/2.0.0/README.md
+++ b/clients/google-api-services-networkmanagement/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-networkmanagement
- v1-rev20260121-2.0.0
+ v1-rev20260130-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260121-2.0.0'
+ implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260130-2.0.0'
}
```
diff --git a/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/NetworkManagement.java b/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/NetworkManagement.java
index 99dc283f5a2..ca6f58c9979 100644
--- a/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/NetworkManagement.java
+++ b/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/NetworkManagement.java
@@ -313,7 +313,10 @@ public Get set(String parameterName, Object value) {
}
}
/**
- * Lists information about the supported locations for this service.
+ * Lists information about the supported locations for this service. This method can be called in
+ * two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
+ * visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
+ * public locations as well as private or other locations specifically visible to the project.
*
* Create a request for the method "locations.list".
*
@@ -337,7 +340,10 @@ public class List extends NetworkManagementRequest This is the Java data model class that specifies how to parse/serialize into the JSON that is
- * transmitted over HTTP when working with the Network Management API. For a detailed explanation
- * see:
- * https://developers.google.com/api-client-library/java/google-http-java-client/json
- *
- *
- * @author Google, Inc.
- */
-@SuppressWarnings("javadoc")
-public final class GoogleManagedServiceInfo extends com.google.api.client.json.GenericJson {
-
- /**
- * IP address of the Google-managed service endpoint.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String ipAddress;
-
- /**
- * URI of the Google-managed service endpoint network, it is empty if the IP address is a public
- * IP address.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String networkUri;
-
- /**
- * Type of a Google-managed service.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String serviceType;
-
- /**
- * URI of the Google-managed service.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String serviceUri;
-
- /**
- * IP address of the Google-managed service endpoint.
- * @return value or {@code null} for none
- */
- public java.lang.String getIpAddress() {
- return ipAddress;
- }
-
- /**
- * IP address of the Google-managed service endpoint.
- * @param ipAddress ipAddress or {@code null} for none
- */
- public GoogleManagedServiceInfo setIpAddress(java.lang.String ipAddress) {
- this.ipAddress = ipAddress;
- return this;
- }
-
- /**
- * URI of the Google-managed service endpoint network, it is empty if the IP address is a public
- * IP address.
- * @return value or {@code null} for none
- */
- public java.lang.String getNetworkUri() {
- return networkUri;
- }
-
- /**
- * URI of the Google-managed service endpoint network, it is empty if the IP address is a public
- * IP address.
- * @param networkUri networkUri or {@code null} for none
- */
- public GoogleManagedServiceInfo setNetworkUri(java.lang.String networkUri) {
- this.networkUri = networkUri;
- return this;
- }
-
- /**
- * Type of a Google-managed service.
- * @return value or {@code null} for none
- */
- public java.lang.String getServiceType() {
- return serviceType;
- }
-
- /**
- * Type of a Google-managed service.
- * @param serviceType serviceType or {@code null} for none
- */
- public GoogleManagedServiceInfo setServiceType(java.lang.String serviceType) {
- this.serviceType = serviceType;
- return this;
- }
-
- /**
- * URI of the Google-managed service.
- * @return value or {@code null} for none
- */
- public java.lang.String getServiceUri() {
- return serviceUri;
- }
-
- /**
- * URI of the Google-managed service.
- * @param serviceUri serviceUri or {@code null} for none
- */
- public GoogleManagedServiceInfo setServiceUri(java.lang.String serviceUri) {
- this.serviceUri = serviceUri;
- return this;
- }
-
- @Override
- public GoogleManagedServiceInfo set(String fieldName, Object value) {
- return (GoogleManagedServiceInfo) super.set(fieldName, value);
- }
-
- @Override
- public GoogleManagedServiceInfo clone() {
- return (GoogleManagedServiceInfo) super.clone();
- }
-
-}
diff --git a/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java b/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java
index ce63ba02998..2d20f5300aa 100644
--- a/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java
+++ b/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java
@@ -145,13 +145,6 @@ public final class Step extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private GkePodInfo gkePod;
- /**
- * Display information of a Google-managed service.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private GoogleManagedServiceInfo googleManagedService;
-
/**
* Display information of a Google service
* The value may be {@code null}.
@@ -577,23 +570,6 @@ public Step setGkePod(GkePodInfo gkePod) {
return this;
}
- /**
- * Display information of a Google-managed service.
- * @return value or {@code null} for none
- */
- public GoogleManagedServiceInfo getGoogleManagedService() {
- return googleManagedService;
- }
-
- /**
- * Display information of a Google-managed service.
- * @param googleManagedService googleManagedService or {@code null} for none
- */
- public Step setGoogleManagedService(GoogleManagedServiceInfo googleManagedService) {
- this.googleManagedService = googleManagedService;
- return this;
- }
-
/**
* Display information of a Google service
* @return value or {@code null} for none
diff --git a/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml b/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml
index f3c6da2f199..419bf0174a9 100644
--- a/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-networkmanagement
- v1-rev20260121-2.0.0
- Network Management API v1-rev20260121-2.0.0
+ v1-rev20260130-2.0.0
+ Network Management API v1-rev20260130-2.0.0
jar
2011
diff --git a/clients/google-api-services-networkmanagement/v1/README.md b/clients/google-api-services-networkmanagement/v1/README.md
index 9154387ea3c..905d4b6f6ef 100644
--- a/clients/google-api-services-networkmanagement/v1/README.md
+++ b/clients/google-api-services-networkmanagement/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-networkmanagement
- v1-rev20260121-2.0.0
+ v1-rev20260130-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260121-2.0.0'
+ implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260130-2.0.0'
}
```
diff --git a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/README.md b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/README.md
index 0f8d035b108..5a43f9bd661 100644
--- a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/README.md
+++ b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-networkmanagement
- v1beta1-rev20260121-2.0.0
+ v1beta1-rev20260130-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20260121-2.0.0'
+ implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20260130-2.0.0'
}
```
diff --git a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/NetworkManagement.java b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/NetworkManagement.java
index 94ed3971130..3a800c27b23 100644
--- a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/NetworkManagement.java
+++ b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/NetworkManagement.java
@@ -313,7 +313,10 @@ public Get set(String parameterName, Object value) {
}
}
/**
- * Lists information about the supported locations for this service.
+ * Lists information about the supported locations for this service. This method can be called in
+ * two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
+ * visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
+ * public locations as well as private or other locations specifically visible to the project.
*
* Create a request for the method "locations.list".
*
@@ -337,7 +340,10 @@ public class List extends NetworkManagementRequest This is the Java data model class that specifies how to parse/serialize into the JSON that is
- * transmitted over HTTP when working with the Network Management API. For a detailed explanation
- * see:
- * https://developers.google.com/api-client-library/java/google-http-java-client/json
- *
- *
- * @author Google, Inc.
- */
-@SuppressWarnings("javadoc")
-public final class GoogleManagedServiceInfo extends com.google.api.client.json.GenericJson {
-
- /**
- * IP address of the Google-managed service endpoint.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String ipAddress;
-
- /**
- * URI of the Google-managed service endpoint network, it is empty if the IP address is a public
- * IP address.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String networkUri;
-
- /**
- * Type of a Google-managed service.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String serviceType;
-
- /**
- * URI of the Google-managed service.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private java.lang.String serviceUri;
-
- /**
- * IP address of the Google-managed service endpoint.
- * @return value or {@code null} for none
- */
- public java.lang.String getIpAddress() {
- return ipAddress;
- }
-
- /**
- * IP address of the Google-managed service endpoint.
- * @param ipAddress ipAddress or {@code null} for none
- */
- public GoogleManagedServiceInfo setIpAddress(java.lang.String ipAddress) {
- this.ipAddress = ipAddress;
- return this;
- }
-
- /**
- * URI of the Google-managed service endpoint network, it is empty if the IP address is a public
- * IP address.
- * @return value or {@code null} for none
- */
- public java.lang.String getNetworkUri() {
- return networkUri;
- }
-
- /**
- * URI of the Google-managed service endpoint network, it is empty if the IP address is a public
- * IP address.
- * @param networkUri networkUri or {@code null} for none
- */
- public GoogleManagedServiceInfo setNetworkUri(java.lang.String networkUri) {
- this.networkUri = networkUri;
- return this;
- }
-
- /**
- * Type of a Google-managed service.
- * @return value or {@code null} for none
- */
- public java.lang.String getServiceType() {
- return serviceType;
- }
-
- /**
- * Type of a Google-managed service.
- * @param serviceType serviceType or {@code null} for none
- */
- public GoogleManagedServiceInfo setServiceType(java.lang.String serviceType) {
- this.serviceType = serviceType;
- return this;
- }
-
- /**
- * URI of the Google-managed service.
- * @return value or {@code null} for none
- */
- public java.lang.String getServiceUri() {
- return serviceUri;
- }
-
- /**
- * URI of the Google-managed service.
- * @param serviceUri serviceUri or {@code null} for none
- */
- public GoogleManagedServiceInfo setServiceUri(java.lang.String serviceUri) {
- this.serviceUri = serviceUri;
- return this;
- }
-
- @Override
- public GoogleManagedServiceInfo set(String fieldName, Object value) {
- return (GoogleManagedServiceInfo) super.set(fieldName, value);
- }
-
- @Override
- public GoogleManagedServiceInfo clone() {
- return (GoogleManagedServiceInfo) super.clone();
- }
-
-}
diff --git a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java
index f0c58ca182a..9b87a0e1902 100644
--- a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java
+++ b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java
@@ -145,13 +145,6 @@ public final class Step extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private GkePodInfo gkePod;
- /**
- * Display information of a Google-managed service.
- * The value may be {@code null}.
- */
- @com.google.api.client.util.Key
- private GoogleManagedServiceInfo googleManagedService;
-
/**
* Display information of a Google service
* The value may be {@code null}.
@@ -577,23 +570,6 @@ public Step setGkePod(GkePodInfo gkePod) {
return this;
}
- /**
- * Display information of a Google-managed service.
- * @return value or {@code null} for none
- */
- public GoogleManagedServiceInfo getGoogleManagedService() {
- return googleManagedService;
- }
-
- /**
- * Display information of a Google-managed service.
- * @param googleManagedService googleManagedService or {@code null} for none
- */
- public Step setGoogleManagedService(GoogleManagedServiceInfo googleManagedService) {
- this.googleManagedService = googleManagedService;
- return this;
- }
-
/**
* Display information of a Google service
* @return value or {@code null} for none
diff --git a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml
index 69992033f63..d6a85d7b82d 100644
--- a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml
+++ b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-networkmanagement
- v1beta1-rev20260121-2.0.0
- Network Management API v1beta1-rev20260121-2.0.0
+ v1beta1-rev20260130-2.0.0
+ Network Management API v1beta1-rev20260130-2.0.0
jar
2011
diff --git a/clients/google-api-services-networkmanagement/v1beta1/README.md b/clients/google-api-services-networkmanagement/v1beta1/README.md
index 0f8d035b108..5a43f9bd661 100644
--- a/clients/google-api-services-networkmanagement/v1beta1/README.md
+++ b/clients/google-api-services-networkmanagement/v1beta1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-networkmanagement
- v1beta1-rev20260121-2.0.0
+ v1beta1-rev20260130-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20260121-2.0.0'
+ implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20260130-2.0.0'
}
```