Skip to content

Commit 120b516

Browse files
1 parent f47d45d commit 120b516

File tree

14 files changed

+582
-20
lines changed

14 files changed

+582
-20
lines changed

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
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 serverless direct VPC egress connection.
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 DirectVpcEgressConnectionInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* URI of direct access network.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String networkUri;
39+
40+
/**
41+
* Region in which the Direct VPC egress is deployed.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String region;
46+
47+
/**
48+
* Selected starting IP address, from the selected IP range.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String selectedIpAddress;
53+
54+
/**
55+
* Selected IP range.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String selectedIpRange;
60+
61+
/**
62+
* URI of direct access subnetwork.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String subnetworkUri;
67+
68+
/**
69+
* URI of direct access network.
70+
* @return value or {@code null} for none
71+
*/
72+
public java.lang.String getNetworkUri() {
73+
return networkUri;
74+
}
75+
76+
/**
77+
* URI of direct access network.
78+
* @param networkUri networkUri or {@code null} for none
79+
*/
80+
public DirectVpcEgressConnectionInfo setNetworkUri(java.lang.String networkUri) {
81+
this.networkUri = networkUri;
82+
return this;
83+
}
84+
85+
/**
86+
* Region in which the Direct VPC egress is deployed.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.lang.String getRegion() {
90+
return region;
91+
}
92+
93+
/**
94+
* Region in which the Direct VPC egress is deployed.
95+
* @param region region or {@code null} for none
96+
*/
97+
public DirectVpcEgressConnectionInfo setRegion(java.lang.String region) {
98+
this.region = region;
99+
return this;
100+
}
101+
102+
/**
103+
* Selected starting IP address, from the selected IP range.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.String getSelectedIpAddress() {
107+
return selectedIpAddress;
108+
}
109+
110+
/**
111+
* Selected starting IP address, from the selected IP range.
112+
* @param selectedIpAddress selectedIpAddress or {@code null} for none
113+
*/
114+
public DirectVpcEgressConnectionInfo setSelectedIpAddress(java.lang.String selectedIpAddress) {
115+
this.selectedIpAddress = selectedIpAddress;
116+
return this;
117+
}
118+
119+
/**
120+
* Selected IP range.
121+
* @return value or {@code null} for none
122+
*/
123+
public java.lang.String getSelectedIpRange() {
124+
return selectedIpRange;
125+
}
126+
127+
/**
128+
* Selected IP range.
129+
* @param selectedIpRange selectedIpRange or {@code null} for none
130+
*/
131+
public DirectVpcEgressConnectionInfo setSelectedIpRange(java.lang.String selectedIpRange) {
132+
this.selectedIpRange = selectedIpRange;
133+
return this;
134+
}
135+
136+
/**
137+
* URI of direct access subnetwork.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.String getSubnetworkUri() {
141+
return subnetworkUri;
142+
}
143+
144+
/**
145+
* URI of direct access subnetwork.
146+
* @param subnetworkUri subnetworkUri or {@code null} for none
147+
*/
148+
public DirectVpcEgressConnectionInfo setSubnetworkUri(java.lang.String subnetworkUri) {
149+
this.subnetworkUri = subnetworkUri;
150+
return this;
151+
}
152+
153+
@Override
154+
public DirectVpcEgressConnectionInfo set(String fieldName, Object value) {
155+
return (DirectVpcEgressConnectionInfo) super.set(fieldName, value);
156+
}
157+
158+
@Override
159+
public DirectVpcEgressConnectionInfo clone() {
160+
return (DirectVpcEgressConnectionInfo) super.clone();
161+
}
162+
163+
}

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public final class RedisClusterInfo extends com.google.api.client.json.GenericJs
5252
private java.lang.String location;
5353

5454
/**
55-
* URI of a Redis Cluster network in format "projects/{project_id}/global/networks/{network_id}".
55+
* URI of the network containing the Redis Cluster endpoints in format
56+
* "projects/{project_id}/global/networks/{network_id}".
5657
* The value may be {@code null}.
5758
*/
5859
@com.google.api.client.util.Key
@@ -125,15 +126,17 @@ public RedisClusterInfo setLocation(java.lang.String location) {
125126
}
126127

127128
/**
128-
* URI of a Redis Cluster network in format "projects/{project_id}/global/networks/{network_id}".
129+
* URI of the network containing the Redis Cluster endpoints in format
130+
* "projects/{project_id}/global/networks/{network_id}".
129131
* @return value or {@code null} for none
130132
*/
131133
public java.lang.String getNetworkUri() {
132134
return networkUri;
133135
}
134136

135137
/**
136-
* URI of a Redis Cluster network in format "projects/{project_id}/global/networks/{network_id}".
138+
* URI of the network containing the Redis Cluster endpoints in format
139+
* "projects/{project_id}/global/networks/{network_id}".
137140
* @param networkUri networkUri or {@code null} for none
138141
*/
139142
public RedisClusterInfo setNetworkUri(java.lang.String networkUri) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 serverless public connection.
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 ServerlessExternalConnectionInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Selected starting IP address, from the Google dynamic address pool.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String selectedIpAddress;
39+
40+
/**
41+
* Selected starting IP address, from the Google dynamic address pool.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getSelectedIpAddress() {
45+
return selectedIpAddress;
46+
}
47+
48+
/**
49+
* Selected starting IP address, from the Google dynamic address pool.
50+
* @param selectedIpAddress selectedIpAddress or {@code null} for none
51+
*/
52+
public ServerlessExternalConnectionInfo setSelectedIpAddress(java.lang.String selectedIpAddress) {
53+
this.selectedIpAddress = selectedIpAddress;
54+
return this;
55+
}
56+
57+
@Override
58+
public ServerlessExternalConnectionInfo set(String fieldName, Object value) {
59+
return (ServerlessExternalConnectionInfo) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public ServerlessExternalConnectionInfo clone() {
64+
return (ServerlessExternalConnectionInfo) super.clone();
65+
}
66+
67+
}

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,13 @@ public final class Step extends com.google.api.client.json.GenericJson {
8787
@com.google.api.client.util.Key
8888
private java.lang.String description;
8989

90+
/**
91+
* Display information of a serverless direct VPC egress connection.
92+
* The value may be {@code null}.
93+
*/
94+
@com.google.api.client.util.Key
95+
private DirectVpcEgressConnectionInfo directVpcEgressConnection;
96+
9097
/**
9198
* Display information of the final state "drop" and reason.
9299
* The value may be {@code null}.
@@ -209,6 +216,13 @@ public final class Step extends com.google.api.client.json.GenericJson {
209216
@com.google.api.client.util.Key
210217
private RouteInfo route;
211218

219+
/**
220+
* Display information of a serverless public (external) connection.
221+
* The value may be {@code null}.
222+
*/
223+
@com.google.api.client.util.Key
224+
private ServerlessExternalConnectionInfo serverlessExternalConnection;
225+
212226
/**
213227
* Display information of a Serverless network endpoint group backend. Used only for return
214228
* traces.
@@ -388,6 +402,23 @@ public Step setDescription(java.lang.String description) {
388402
return this;
389403
}
390404

405+
/**
406+
* Display information of a serverless direct VPC egress connection.
407+
* @return value or {@code null} for none
408+
*/
409+
public DirectVpcEgressConnectionInfo getDirectVpcEgressConnection() {
410+
return directVpcEgressConnection;
411+
}
412+
413+
/**
414+
* Display information of a serverless direct VPC egress connection.
415+
* @param directVpcEgressConnection directVpcEgressConnection or {@code null} for none
416+
*/
417+
public Step setDirectVpcEgressConnection(DirectVpcEgressConnectionInfo directVpcEgressConnection) {
418+
this.directVpcEgressConnection = directVpcEgressConnection;
419+
return this;
420+
}
421+
391422
/**
392423
* Display information of the final state "drop" and reason.
393424
* @return value or {@code null} for none
@@ -683,6 +714,23 @@ public Step setRoute(RouteInfo route) {
683714
return this;
684715
}
685716

717+
/**
718+
* Display information of a serverless public (external) connection.
719+
* @return value or {@code null} for none
720+
*/
721+
public ServerlessExternalConnectionInfo getServerlessExternalConnection() {
722+
return serverlessExternalConnection;
723+
}
724+
725+
/**
726+
* Display information of a serverless public (external) connection.
727+
* @param serverlessExternalConnection serverlessExternalConnection or {@code null} for none
728+
*/
729+
public Step setServerlessExternalConnection(ServerlessExternalConnectionInfo serverlessExternalConnection) {
730+
this.serverlessExternalConnection = serverlessExternalConnection;
731+
return this;
732+
}
733+
686734
/**
687735
* Display information of a Serverless network endpoint group backend. Used only for return
688736
* traces.

clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml

Lines changed: 3 additions & 3 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-rev20250212-2.0.0</version>
12-
<name>Network Management API v1-rev20250212-2.0.0</name>
11+
<version>v1-rev20250226-2.0.0</version>
12+
<name>Network Management API v1-rev20250226-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Network Management API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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

0 commit comments

Comments
 (0)