Skip to content

Commit 6112455

Browse files
1 parent 0538d9f commit 6112455

12 files changed

Lines changed: 272 additions & 36 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-rev20260414-2.0.0</version>
25+
<version>v1-rev20260424-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-rev20260414-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260424-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: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -462,22 +462,22 @@ public List setName(java.lang.String name) {
462462
}
463463

464464
/**
465-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
466-
* documented otherwise. This is primarily for internal usage.
465+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
466+
* for internal usage.
467467
*/
468468
@com.google.api.client.util.Key
469469
private java.util.List<java.lang.String> extraLocationTypes;
470470

471-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
472-
otherwise. This is primarily for internal usage.
471+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
472+
internal usage.
473473
*/
474474
public java.util.List<java.lang.String> getExtraLocationTypes() {
475475
return extraLocationTypes;
476476
}
477477

478478
/**
479-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
480-
* documented otherwise. This is primarily for internal usage.
479+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
480+
* for internal usage.
481481
*/
482482
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
483483
this.extraLocationTypes = extraLocationTypes;
@@ -2506,22 +2506,22 @@ public List setName(java.lang.String name) {
25062506
}
25072507

25082508
/**
2509-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
2510-
* documented otherwise. This is primarily for internal usage.
2509+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
2510+
* for internal usage.
25112511
*/
25122512
@com.google.api.client.util.Key
25132513
private java.util.List<java.lang.String> extraLocationTypes;
25142514

2515-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
2516-
otherwise. This is primarily for internal usage.
2515+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
2516+
internal usage.
25172517
*/
25182518
public java.util.List<java.lang.String> getExtraLocationTypes() {
25192519
return extraLocationTypes;
25202520
}
25212521

25222522
/**
2523-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
2524-
* documented otherwise. This is primarily for internal usage.
2523+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
2524+
* for internal usage.
25252525
*/
25262526
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
25272527
this.extraLocationTypes = extraLocationTypes;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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 Private 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 PrivateConnectionInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* URI of the Private Connection in format
35+
* "projects/{project_id}/locations/{location}/privateConnections/{private_connection_id}"
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String uri;
40+
41+
/**
42+
* URI of the Private Connection in format
43+
* "projects/{project_id}/locations/{location}/privateConnections/{private_connection_id}"
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getUri() {
47+
return uri;
48+
}
49+
50+
/**
51+
* URI of the Private Connection in format
52+
* "projects/{project_id}/locations/{location}/privateConnections/{private_connection_id}"
53+
* @param uri uri or {@code null} for none
54+
*/
55+
public PrivateConnectionInfo setUri(java.lang.String uri) {
56+
this.uri = uri;
57+
return this;
58+
}
59+
60+
@Override
61+
public PrivateConnectionInfo set(String fieldName, Object value) {
62+
return (PrivateConnectionInfo) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public PrivateConnectionInfo clone() {
67+
return (PrivateConnectionInfo) super.clone();
68+
}
69+
70+
}

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
@@ -73,6 +73,13 @@ public final class Step extends com.google.api.client.json.GenericJson {
7373
@com.google.api.client.util.Key
7474
private CloudSQLInstanceInfo cloudSqlInstance;
7575

76+
/**
77+
* Display information of a Datastream Private Connection.
78+
* The value may be {@code null}.
79+
*/
80+
@com.google.api.client.util.Key
81+
private PrivateConnectionInfo datastreamPrivateConnection;
82+
7683
/**
7784
* Display information of the final state "deliver" and reason.
7885
* The value may be {@code null}.
@@ -94,6 +101,13 @@ public final class Step extends com.google.api.client.json.GenericJson {
94101
@com.google.api.client.util.Key
95102
private DirectVpcEgressConnectionInfo directVpcEgressConnection;
96103

104+
/**
105+
* Display information of a DMS Private Connection.
106+
* The value may be {@code null}.
107+
*/
108+
@com.google.api.client.util.Key
109+
private PrivateConnectionInfo dmsPrivateConnection;
110+
97111
/**
98112
* Display information of the final state "drop" and reason.
99113
* The value may be {@code null}.
@@ -417,6 +431,23 @@ public Step setCloudSqlInstance(CloudSQLInstanceInfo cloudSqlInstance) {
417431
return this;
418432
}
419433

434+
/**
435+
* Display information of a Datastream Private Connection.
436+
* @return value or {@code null} for none
437+
*/
438+
public PrivateConnectionInfo getDatastreamPrivateConnection() {
439+
return datastreamPrivateConnection;
440+
}
441+
442+
/**
443+
* Display information of a Datastream Private Connection.
444+
* @param datastreamPrivateConnection datastreamPrivateConnection or {@code null} for none
445+
*/
446+
public Step setDatastreamPrivateConnection(PrivateConnectionInfo datastreamPrivateConnection) {
447+
this.datastreamPrivateConnection = datastreamPrivateConnection;
448+
return this;
449+
}
450+
420451
/**
421452
* Display information of the final state "deliver" and reason.
422453
* @return value or {@code null} for none
@@ -468,6 +499,23 @@ public Step setDirectVpcEgressConnection(DirectVpcEgressConnectionInfo directVpc
468499
return this;
469500
}
470501

502+
/**
503+
* Display information of a DMS Private Connection.
504+
* @return value or {@code null} for none
505+
*/
506+
public PrivateConnectionInfo getDmsPrivateConnection() {
507+
return dmsPrivateConnection;
508+
}
509+
510+
/**
511+
* Display information of a DMS Private Connection.
512+
* @param dmsPrivateConnection dmsPrivateConnection or {@code null} for none
513+
*/
514+
public Step setDmsPrivateConnection(PrivateConnectionInfo dmsPrivateConnection) {
515+
this.dmsPrivateConnection = dmsPrivateConnection;
516+
return this;
517+
}
518+
471519
/**
472520
* Display information of the final state "drop" and reason.
473521
* @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-rev20260414-2.0.0</version>
12-
<name>Network Management API v1-rev20260414-2.0.0</name>
11+
<version>v1-rev20260424-2.0.0</version>
12+
<name>Network Management API v1-rev20260424-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-rev20260414-2.0.0</version>
25+
<version>v1-rev20260424-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-rev20260414-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkmanagement:v1-rev20260424-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-rev20260414-2.0.0</version>
25+
<version>v1beta1-rev20260424-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-rev20260414-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20260424-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: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -462,22 +462,22 @@ public List setName(java.lang.String name) {
462462
}
463463

464464
/**
465-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
466-
* documented otherwise. This is primarily for internal usage.
465+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
466+
* for internal usage.
467467
*/
468468
@com.google.api.client.util.Key
469469
private java.util.List<java.lang.String> extraLocationTypes;
470470

471-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
472-
otherwise. This is primarily for internal usage.
471+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
472+
internal usage.
473473
*/
474474
public java.util.List<java.lang.String> getExtraLocationTypes() {
475475
return extraLocationTypes;
476476
}
477477

478478
/**
479-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
480-
* documented otherwise. This is primarily for internal usage.
479+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
480+
* for internal usage.
481481
*/
482482
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
483483
this.extraLocationTypes = extraLocationTypes;
@@ -2506,22 +2506,22 @@ public List setName(java.lang.String name) {
25062506
}
25072507

25082508
/**
2509-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
2510-
* documented otherwise. This is primarily for internal usage.
2509+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
2510+
* for internal usage.
25112511
*/
25122512
@com.google.api.client.util.Key
25132513
private java.util.List<java.lang.String> extraLocationTypes;
25142514

2515-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
2516-
otherwise. This is primarily for internal usage.
2515+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
2516+
internal usage.
25172517
*/
25182518
public java.util.List<java.lang.String> getExtraLocationTypes() {
25192519
return extraLocationTypes;
25202520
}
25212521

25222522
/**
2523-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
2524-
* documented otherwise. This is primarily for internal usage.
2523+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
2524+
* for internal usage.
25252525
*/
25262526
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
25272527
this.extraLocationTypes = extraLocationTypes;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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 Private 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 PrivateConnectionInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* URI of the Private Connection in format
35+
* "projects/{project_id}/locations/{location}/privateConnections/{private_connection_id}"
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String uri;
40+
41+
/**
42+
* URI of the Private Connection in format
43+
* "projects/{project_id}/locations/{location}/privateConnections/{private_connection_id}"
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getUri() {
47+
return uri;
48+
}
49+
50+
/**
51+
* URI of the Private Connection in format
52+
* "projects/{project_id}/locations/{location}/privateConnections/{private_connection_id}"
53+
* @param uri uri or {@code null} for none
54+
*/
55+
public PrivateConnectionInfo setUri(java.lang.String uri) {
56+
this.uri = uri;
57+
return this;
58+
}
59+
60+
@Override
61+
public PrivateConnectionInfo set(String fieldName, Object value) {
62+
return (PrivateConnectionInfo) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public PrivateConnectionInfo clone() {
67+
return (PrivateConnectionInfo) super.clone();
68+
}
69+
70+
}

0 commit comments

Comments
 (0)