Skip to content

Commit 87f3f3a

Browse files
1 parent ba7d08f commit 87f3f3a

File tree

5 files changed

+142
-16
lines changed

5 files changed

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

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

Lines changed: 52 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.networkmanagement.v1.model;
1818

1919
/**
20-
* For display only. Metadata associated with a Compute Engine network.
20+
* For display only. Metadata associated with a Compute Engine network. Next ID: 7
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Network Management API. For a detailed explanation
@@ -38,12 +38,26 @@ public final class NetworkInfo extends com.google.api.client.json.GenericJson {
3838
private java.lang.String displayName;
3939

4040
/**
41-
* The IP range that matches the test.
41+
* The IP range of the subnet matching the source IP address of the test.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
4545
private java.lang.String matchedIpRange;
4646

47+
/**
48+
* URI of the subnet matching the source IP address of the test.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String matchedSubnetUri;
53+
54+
/**
55+
* The region of the subnet matching the source IP address of the test.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String region;
60+
4761
/**
4862
* URI of a Compute Engine network.
4963
* The value may be {@code null}.
@@ -69,22 +83,56 @@ public NetworkInfo setDisplayName(java.lang.String displayName) {
6983
}
7084

7185
/**
72-
* The IP range that matches the test.
86+
* The IP range of the subnet matching the source IP address of the test.
7387
* @return value or {@code null} for none
7488
*/
7589
public java.lang.String getMatchedIpRange() {
7690
return matchedIpRange;
7791
}
7892

7993
/**
80-
* The IP range that matches the test.
94+
* The IP range of the subnet matching the source IP address of the test.
8195
* @param matchedIpRange matchedIpRange or {@code null} for none
8296
*/
8397
public NetworkInfo setMatchedIpRange(java.lang.String matchedIpRange) {
8498
this.matchedIpRange = matchedIpRange;
8599
return this;
86100
}
87101

102+
/**
103+
* URI of the subnet matching the source IP address of the test.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.String getMatchedSubnetUri() {
107+
return matchedSubnetUri;
108+
}
109+
110+
/**
111+
* URI of the subnet matching the source IP address of the test.
112+
* @param matchedSubnetUri matchedSubnetUri or {@code null} for none
113+
*/
114+
public NetworkInfo setMatchedSubnetUri(java.lang.String matchedSubnetUri) {
115+
this.matchedSubnetUri = matchedSubnetUri;
116+
return this;
117+
}
118+
119+
/**
120+
* The region of the subnet matching the source IP address of the test.
121+
* @return value or {@code null} for none
122+
*/
123+
public java.lang.String getRegion() {
124+
return region;
125+
}
126+
127+
/**
128+
* The region of the subnet matching the source IP address of the test.
129+
* @param region region or {@code null} for none
130+
*/
131+
public NetworkInfo setRegion(java.lang.String region) {
132+
this.region = region;
133+
return this;
134+
}
135+
88136
/**
89137
* URI of a Compute Engine network.
90138
* @return value or {@code null} for none

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

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

33+
/**
34+
* For advertised routes, the URI of their next hop, i.e. the URI of the hybrid endpoint (VPN
35+
* tunnel, Interconnect attachment, NCC router appliance) the advertised prefix is advertised
36+
* through, or URI of the source peered network.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String advertisedRouteNextHopUri;
41+
42+
/**
43+
* For advertised dynamic routes, the URI of the Cloud Router that advertised the corresponding IP
44+
* prefix.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.lang.String advertisedRouteSourceRouterUri;
49+
3350
/**
3451
* Destination IP range of the route.
3552
* The value may be {@code null}.
@@ -107,6 +124,13 @@ public final class RouteInfo extends com.google.api.client.json.GenericJson {
107124
@com.google.api.client.util.Key
108125
private java.util.List<java.lang.String> protocols;
109126

127+
/**
128+
* Region of the route (if applicable).
129+
* The value may be {@code null}.
130+
*/
131+
@com.google.api.client.util.Key
132+
private java.lang.String region;
133+
110134
/**
111135
* Indicates where route is applicable.
112136
* The value may be {@code null}.
@@ -136,13 +160,52 @@ public final class RouteInfo extends com.google.api.client.json.GenericJson {
136160
private java.util.List<java.lang.String> srcPortRanges;
137161

138162
/**
139-
* URI of a route. Dynamic, peering static and peering dynamic routes do not have an URI.
140-
* Advertised route from Google Cloud VPC to on-premises network also does not have an URI.
163+
* URI of a route (if applicable).
141164
* The value may be {@code null}.
142165
*/
143166
@com.google.api.client.util.Key
144167
private java.lang.String uri;
145168

169+
/**
170+
* For advertised routes, the URI of their next hop, i.e. the URI of the hybrid endpoint (VPN
171+
* tunnel, Interconnect attachment, NCC router appliance) the advertised prefix is advertised
172+
* through, or URI of the source peered network.
173+
* @return value or {@code null} for none
174+
*/
175+
public java.lang.String getAdvertisedRouteNextHopUri() {
176+
return advertisedRouteNextHopUri;
177+
}
178+
179+
/**
180+
* For advertised routes, the URI of their next hop, i.e. the URI of the hybrid endpoint (VPN
181+
* tunnel, Interconnect attachment, NCC router appliance) the advertised prefix is advertised
182+
* through, or URI of the source peered network.
183+
* @param advertisedRouteNextHopUri advertisedRouteNextHopUri or {@code null} for none
184+
*/
185+
public RouteInfo setAdvertisedRouteNextHopUri(java.lang.String advertisedRouteNextHopUri) {
186+
this.advertisedRouteNextHopUri = advertisedRouteNextHopUri;
187+
return this;
188+
}
189+
190+
/**
191+
* For advertised dynamic routes, the URI of the Cloud Router that advertised the corresponding IP
192+
* prefix.
193+
* @return value or {@code null} for none
194+
*/
195+
public java.lang.String getAdvertisedRouteSourceRouterUri() {
196+
return advertisedRouteSourceRouterUri;
197+
}
198+
199+
/**
200+
* For advertised dynamic routes, the URI of the Cloud Router that advertised the corresponding IP
201+
* prefix.
202+
* @param advertisedRouteSourceRouterUri advertisedRouteSourceRouterUri or {@code null} for none
203+
*/
204+
public RouteInfo setAdvertisedRouteSourceRouterUri(java.lang.String advertisedRouteSourceRouterUri) {
205+
this.advertisedRouteSourceRouterUri = advertisedRouteSourceRouterUri;
206+
return this;
207+
}
208+
146209
/**
147210
* Destination IP range of the route.
148211
* @return value or {@code null} for none
@@ -330,6 +393,23 @@ public RouteInfo setProtocols(java.util.List<java.lang.String> protocols) {
330393
return this;
331394
}
332395

396+
/**
397+
* Region of the route (if applicable).
398+
* @return value or {@code null} for none
399+
*/
400+
public java.lang.String getRegion() {
401+
return region;
402+
}
403+
404+
/**
405+
* Region of the route (if applicable).
406+
* @param region region or {@code null} for none
407+
*/
408+
public RouteInfo setRegion(java.lang.String region) {
409+
this.region = region;
410+
return this;
411+
}
412+
333413
/**
334414
* Indicates where route is applicable.
335415
* @return value or {@code null} for none
@@ -399,17 +479,15 @@ public RouteInfo setSrcPortRanges(java.util.List<java.lang.String> srcPortRanges
399479
}
400480

401481
/**
402-
* URI of a route. Dynamic, peering static and peering dynamic routes do not have an URI.
403-
* Advertised route from Google Cloud VPC to on-premises network also does not have an URI.
482+
* URI of a route (if applicable).
404483
* @return value or {@code null} for none
405484
*/
406485
public java.lang.String getUri() {
407486
return uri;
408487
}
409488

410489
/**
411-
* URI of a route. Dynamic, peering static and peering dynamic routes do not have an URI.
412-
* Advertised route from Google Cloud VPC to on-premises network also does not have an URI.
490+
* URI of a route (if applicable).
413491
* @param uri uri or {@code null} for none
414492
*/
415493
public RouteInfo setUri(java.lang.String uri) {

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

0 commit comments

Comments
 (0)