Skip to content

Commit e08eb6f

Browse files
1 parent 3c9cd5a commit e08eb6f

File tree

18 files changed

+1724
-90
lines changed

18 files changed

+1724
-90
lines changed

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

clients/google-api-services-networkconnectivity/v1/2.0.0/com/google/api/services/networkconnectivity/v1/Networkconnectivity.java

Lines changed: 818 additions & 0 deletions
Large diffs are not rendered by default.

clients/google-api-services-networkconnectivity/v1/2.0.0/com/google/api/services/networkconnectivity/v1/model/AutoCreatedSubnetworkInfo.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 AutoCreatedSubnetworkInfo extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. Indicates whether the subnetwork is delinked from the Service Connection Policy.
35+
* Only set if the subnetwork mode is AUTO_CREATED during creation.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Boolean delinked;
40+
3341
/**
3442
* Output only. URI of the automatically created Internal Range. Only set if the subnetwork mode
3543
* is AUTO_CREATED during creation.
@@ -62,6 +70,25 @@ public final class AutoCreatedSubnetworkInfo extends com.google.api.client.json.
6270
@com.google.api.client.util.Key
6371
private java.lang.String subnetworkRef;
6472

73+
/**
74+
* Output only. Indicates whether the subnetwork is delinked from the Service Connection Policy.
75+
* Only set if the subnetwork mode is AUTO_CREATED during creation.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.Boolean getDelinked() {
79+
return delinked;
80+
}
81+
82+
/**
83+
* Output only. Indicates whether the subnetwork is delinked from the Service Connection Policy.
84+
* Only set if the subnetwork mode is AUTO_CREATED during creation.
85+
* @param delinked delinked or {@code null} for none
86+
*/
87+
public AutoCreatedSubnetworkInfo setDelinked(java.lang.Boolean delinked) {
88+
this.delinked = delinked;
89+
return this;
90+
}
91+
6592
/**
6693
* Output only. URI of the automatically created Internal Range. Only set if the subnetwork mode
6794
* is AUTO_CREATED during creation.

0 commit comments

Comments
 (0)