Skip to content

Commit baa6885

Browse files
1 parent 9901b97 commit baa6885

File tree

6 files changed

+67
-13
lines changed

6 files changed

+67
-13
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-rev20250527-2.0.0</version>
25+
<version>v1beta1-rev20250604-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-rev20250527-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20250604-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5610,10 +5610,10 @@ public QueryOrgVpcFlowLogsConfigs queryOrgVpcFlowLogsConfigs(java.lang.String pa
56105610

56115611
public class QueryOrgVpcFlowLogsConfigs extends NetworkManagementRequest<com.google.api.services.networkmanagement.v1beta1.model.QueryOrgVpcFlowLogsConfigsResponse> {
56125612

5613-
private static final String REST_PATH = "v1beta1/{+parent}:queryOrgVpcFlowLogsConfigs";
5613+
private static final String REST_PATH = "v1beta1/{+parent}/vpcFlowLogsConfigs:queryOrgVpcFlowLogsConfigs";
56145614

56155615
private final java.util.regex.Pattern PARENT_PATTERN =
5616-
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/vpcFlowLogsConfigs$");
5616+
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+$");
56175617

56185618
/**
56195619
* QueryOrgVpcFlowLogsConfigs lists Organization resources for a given project.
@@ -5635,7 +5635,7 @@ protected QueryOrgVpcFlowLogsConfigs(java.lang.String parent) {
56355635
if (!getSuppressPatternChecks()) {
56365636
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),
56375637
"Parameter parent must conform to the pattern " +
5638-
"^projects/[^/]+/locations/[^/]+/vpcFlowLogsConfigs$");
5638+
"^projects/[^/]+/locations/[^/]+$");
56395639
}
56405640
}
56415641

@@ -5725,7 +5725,7 @@ public QueryOrgVpcFlowLogsConfigs setParent(java.lang.String parent) {
57255725
if (!getSuppressPatternChecks()) {
57265726
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),
57275727
"Parameter parent must conform to the pattern " +
5728-
"^projects/[^/]+/locations/[^/]+/vpcFlowLogsConfigs$");
5728+
"^projects/[^/]+/locations/[^/]+$");
57295729
}
57305730
this.parent = parent;
57315731
return this;

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030
@SuppressWarnings("javadoc")
3131
public final class CloudRunRevisionEndpoint extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. The URI of the Cloud Run service that the revision belongs to. The format is:
35+
* projects/{project}/locations/{location}/services/{service}
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String serviceUri;
40+
3341
/**
3442
* A [Cloud Run](https://cloud.google.com/run)
3543
* [revision](https://cloud.google.com/run/docs/reference/rest/v1/namespaces.revisions/get) URI.
@@ -39,6 +47,25 @@ public final class CloudRunRevisionEndpoint extends com.google.api.client.json.G
3947
@com.google.api.client.util.Key
4048
private java.lang.String uri;
4149

50+
/**
51+
* Output only. The URI of the Cloud Run service that the revision belongs to. The format is:
52+
* projects/{project}/locations/{location}/services/{service}
53+
* @return value or {@code null} for none
54+
*/
55+
public java.lang.String getServiceUri() {
56+
return serviceUri;
57+
}
58+
59+
/**
60+
* Output only. The URI of the Cloud Run service that the revision belongs to. The format is:
61+
* projects/{project}/locations/{location}/services/{service}
62+
* @param serviceUri serviceUri or {@code null} for none
63+
*/
64+
public CloudRunRevisionEndpoint setServiceUri(java.lang.String serviceUri) {
65+
this.serviceUri = serviceUri;
66+
return this;
67+
}
68+
4269
/**
4370
* A [Cloud Run](https://cloud.google.com/run)
4471
* [revision](https://cloud.google.com/run/docs/reference/rest/v1/namespaces.revisions/get) URI.

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

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ public final class InstanceInfo extends com.google.api.client.json.GenericJson {
8080
private java.lang.String pscNetworkAttachmentUri;
8181

8282
/**
83-
* Indicates whether the Compute Engine instance is running.
83+
* Indicates whether the Compute Engine instance is running. Deprecated: use the `status` field
84+
* instead.
8485
* The value may be {@code null}.
8586
*/
8687
@com.google.api.client.util.Key
@@ -93,6 +94,13 @@ public final class InstanceInfo extends com.google.api.client.json.GenericJson {
9394
@com.google.api.client.util.Key
9495
private java.lang.String serviceAccount;
9596

97+
/**
98+
* The status of the instance.
99+
* The value may be {@code null}.
100+
*/
101+
@com.google.api.client.util.Key
102+
private java.lang.String status;
103+
96104
/**
97105
* URI of a Compute Engine instance.
98106
* The value may be {@code null}.
@@ -220,15 +228,17 @@ public InstanceInfo setPscNetworkAttachmentUri(java.lang.String pscNetworkAttach
220228
}
221229

222230
/**
223-
* Indicates whether the Compute Engine instance is running.
231+
* Indicates whether the Compute Engine instance is running. Deprecated: use the `status` field
232+
* instead.
224233
* @return value or {@code null} for none
225234
*/
226235
public java.lang.Boolean getRunning() {
227236
return running;
228237
}
229238

230239
/**
231-
* Indicates whether the Compute Engine instance is running.
240+
* Indicates whether the Compute Engine instance is running. Deprecated: use the `status` field
241+
* instead.
232242
* @param running running or {@code null} for none
233243
*/
234244
public InstanceInfo setRunning(java.lang.Boolean running) {
@@ -253,6 +263,23 @@ public InstanceInfo setServiceAccount(java.lang.String serviceAccount) {
253263
return this;
254264
}
255265

266+
/**
267+
* The status of the instance.
268+
* @return value or {@code null} for none
269+
*/
270+
public java.lang.String getStatus() {
271+
return status;
272+
}
273+
274+
/**
275+
* The status of the instance.
276+
* @param status status or {@code null} for none
277+
*/
278+
public InstanceInfo setStatus(java.lang.String status) {
279+
this.status = status;
280+
return this;
281+
}
282+
256283
/**
257284
* URI of a Compute Engine instance.
258285
* @return value or {@code null} for none

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-rev20250527-2.0.0</version>
12-
<name>Network Management API v1beta1-rev20250527-2.0.0</name>
11+
<version>v1beta1-rev20250604-2.0.0</version>
12+
<name>Network Management API v1beta1-rev20250604-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-rev20250527-2.0.0</version>
25+
<version>v1beta1-rev20250604-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-rev20250527-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20250604-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)