Skip to content

Commit e6fc3cc

Browse files
1 parent bea3178 commit e6fc3cc

11 files changed

Lines changed: 336 additions & 12 deletions

File tree

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

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

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5329,6 +5329,29 @@ public GenerateMonitoringPointConfig setName(java.lang.String name) {
53295329
return this;
53305330
}
53315331

5332+
/**
5333+
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
5334+
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
5335+
*/
5336+
@com.google.api.client.util.Key
5337+
private java.lang.Boolean privateConnectivityEnabled;
5338+
5339+
/** Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is deployed in a
5340+
Private Service Connect deployment. Not used for non-Google Cloud MPs.
5341+
*/
5342+
public java.lang.Boolean getPrivateConnectivityEnabled() {
5343+
return privateConnectivityEnabled;
5344+
}
5345+
5346+
/**
5347+
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
5348+
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
5349+
*/
5350+
public GenerateMonitoringPointConfig setPrivateConnectivityEnabled(java.lang.Boolean privateConnectivityEnabled) {
5351+
this.privateConnectivityEnabled = privateConnectivityEnabled;
5352+
return this;
5353+
}
5354+
53325355
@Override
53335356
public GenerateMonitoringPointConfig set(String parameterName, Object value) {
53345357
return (GenerateMonitoringPointConfig) super.set(parameterName, value);
@@ -6112,6 +6135,29 @@ public DownloadInstallScript setNtpServerSecondaryAddress(java.lang.String ntpSe
61126135
return this;
61136136
}
61146137

6138+
/**
6139+
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
6140+
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
6141+
*/
6142+
@com.google.api.client.util.Key
6143+
private java.lang.Boolean privateConnectivityEnabled;
6144+
6145+
/** Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is deployed in a
6146+
Private Service Connect deployment. Not used for non-Google Cloud MPs.
6147+
*/
6148+
public java.lang.Boolean getPrivateConnectivityEnabled() {
6149+
return privateConnectivityEnabled;
6150+
}
6151+
6152+
/**
6153+
* Optional. For Google Cloud MPs, this field indicates whether the Monitoring Point is
6154+
* deployed in a Private Service Connect deployment. Not used for non-Google Cloud MPs.
6155+
*/
6156+
public DownloadInstallScript setPrivateConnectivityEnabled(java.lang.Boolean privateConnectivityEnabled) {
6157+
this.privateConnectivityEnabled = privateConnectivityEnabled;
6158+
return this;
6159+
}
6160+
61156161
/** Required. DNS server. */
61166162
@com.google.api.client.util.Key("staticIpAddress.dnsServerAddress")
61176163
private java.lang.String staticIpAddressDnsServerAddress;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.networkmanagement.v1.model;
18+
19+
/**
20+
* For display only. Metadata associated with a Cloud Run job.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Network Management API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class CloudRunJobInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Name of a Cloud Run job.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String displayName;
39+
40+
/**
41+
* Location in which this job is deployed.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String location;
46+
47+
/**
48+
* URI of a Cloud Run job.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String uri;
53+
54+
/**
55+
* Name of a Cloud Run job.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getDisplayName() {
59+
return displayName;
60+
}
61+
62+
/**
63+
* Name of a Cloud Run job.
64+
* @param displayName displayName or {@code null} for none
65+
*/
66+
public CloudRunJobInfo setDisplayName(java.lang.String displayName) {
67+
this.displayName = displayName;
68+
return this;
69+
}
70+
71+
/**
72+
* Location in which this job is deployed.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.String getLocation() {
76+
return location;
77+
}
78+
79+
/**
80+
* Location in which this job is deployed.
81+
* @param location location or {@code null} for none
82+
*/
83+
public CloudRunJobInfo setLocation(java.lang.String location) {
84+
this.location = location;
85+
return this;
86+
}
87+
88+
/**
89+
* URI of a Cloud Run job.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getUri() {
93+
return uri;
94+
}
95+
96+
/**
97+
* URI of a Cloud Run job.
98+
* @param uri uri or {@code null} for none
99+
*/
100+
public CloudRunJobInfo setUri(java.lang.String uri) {
101+
this.uri = uri;
102+
return this;
103+
}
104+
105+
@Override
106+
public CloudRunJobInfo set(String fieldName, Object value) {
107+
return (CloudRunJobInfo) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public CloudRunJobInfo clone() {
112+
return (CloudRunJobInfo) super.clone();
113+
}
114+
115+
}

clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class Step extends com.google.api.client.json.GenericJson {
5959
@com.google.api.client.util.Key
6060
private CloudFunctionInfo cloudFunction;
6161

62+
/**
63+
* Display information of a Cloud Run job.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private CloudRunJobInfo cloudRunJob;
68+
6269
/**
6370
* Display information of a Cloud Run revision.
6471
* The value may be {@code null}.
@@ -397,6 +404,23 @@ public Step setCloudFunction(CloudFunctionInfo cloudFunction) {
397404
return this;
398405
}
399406

407+
/**
408+
* Display information of a Cloud Run job.
409+
* @return value or {@code null} for none
410+
*/
411+
public CloudRunJobInfo getCloudRunJob() {
412+
return cloudRunJob;
413+
}
414+
415+
/**
416+
* Display information of a Cloud Run job.
417+
* @param cloudRunJob cloudRunJob or {@code null} for none
418+
*/
419+
public Step setCloudRunJob(CloudRunJobInfo cloudRunJob) {
420+
this.cloudRunJob = cloudRunJob;
421+
return this;
422+
}
423+
400424
/**
401425
* Display information of a Cloud Run revision.
402426
* @return value or {@code null} for none

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

1515
<inceptionYear>2011</inceptionYear>

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

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.networkmanagement.v1beta1.model;
18+
19+
/**
20+
* For display only. Metadata associated with a Cloud Run job.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Network Management API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class CloudRunJobInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Name of a Cloud Run job.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String displayName;
39+
40+
/**
41+
* Location in which this job is deployed.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String location;
46+
47+
/**
48+
* URI of a Cloud Run job.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String uri;
53+
54+
/**
55+
* Name of a Cloud Run job.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getDisplayName() {
59+
return displayName;
60+
}
61+
62+
/**
63+
* Name of a Cloud Run job.
64+
* @param displayName displayName or {@code null} for none
65+
*/
66+
public CloudRunJobInfo setDisplayName(java.lang.String displayName) {
67+
this.displayName = displayName;
68+
return this;
69+
}
70+
71+
/**
72+
* Location in which this job is deployed.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.String getLocation() {
76+
return location;
77+
}
78+
79+
/**
80+
* Location in which this job is deployed.
81+
* @param location location or {@code null} for none
82+
*/
83+
public CloudRunJobInfo setLocation(java.lang.String location) {
84+
this.location = location;
85+
return this;
86+
}
87+
88+
/**
89+
* URI of a Cloud Run job.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getUri() {
93+
return uri;
94+
}
95+
96+
/**
97+
* URI of a Cloud Run job.
98+
* @param uri uri or {@code null} for none
99+
*/
100+
public CloudRunJobInfo setUri(java.lang.String uri) {
101+
this.uri = uri;
102+
return this;
103+
}
104+
105+
@Override
106+
public CloudRunJobInfo set(String fieldName, Object value) {
107+
return (CloudRunJobInfo) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public CloudRunJobInfo clone() {
112+
return (CloudRunJobInfo) super.clone();
113+
}
114+
115+
}

0 commit comments

Comments
 (0)