Skip to content

Commit b9937f0

Browse files
1 parent b061599 commit b9937f0

File tree

12 files changed

+157
-21
lines changed

12 files changed

+157
-21
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-rev20250226-2.0.0</version>
25+
<version>v1-rev20250318-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-rev20250226-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkconnectivity:v1-rev20250318-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: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7833,17 +7833,24 @@ public Create setParent(java.lang.String parent) {
78337833
return this;
78347834
}
78357835

7836-
/** Required. Unique id of the Regional Endpoint to be created. */
7836+
/**
7837+
* Required. Unique id of the Regional Endpoint to be created. @pattern:
7838+
* ^[-a-z0-9](?:[-a-z0-9]{0,44})[a-z0-9]$
7839+
*/
78377840
@com.google.api.client.util.Key
78387841
private java.lang.String regionalEndpointId;
78397842

7840-
/** Required. Unique id of the Regional Endpoint to be created.
7843+
/** Required. Unique id of the Regional Endpoint to be created. @pattern:
7844+
^[-a-z0-9](?:[-a-z0-9]{0,44})[a-z0-9]$
78417845
*/
78427846
public java.lang.String getRegionalEndpointId() {
78437847
return regionalEndpointId;
78447848
}
78457849

7846-
/** Required. Unique id of the Regional Endpoint to be created. */
7850+
/**
7851+
* Required. Unique id of the Regional Endpoint to be created. @pattern:
7852+
* ^[-a-z0-9](?:[-a-z0-9]{0,44})[a-z0-9]$
7853+
*/
78477854
public Create setRegionalEndpointId(java.lang.String regionalEndpointId) {
78487855
this.regionalEndpointId = regionalEndpointId;
78497856
return this;

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

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,22 @@ public final class InternalRange extends com.google.api.client.json.GenericJson
4646
@com.google.api.client.util.Key
4747
private java.lang.String description;
4848

49+
/**
50+
* Optional. ExcludeCidrRanges flag. Specifies a set of CIDR blocks that allows exclusion of
51+
* particular CIDR ranges from the auto-allocation process, without having to reserve these blocks
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.util.List<java.lang.String> excludeCidrRanges;
56+
57+
/**
58+
* Optional. Immutable ranges cannot have their fields modified, except for labels and
59+
* description.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.Boolean immutable;
64+
4965
/**
5066
* The IP range that this internal range defines. NOTE: IPv6 ranges are limited to
5167
* usage=EXTERNAL_TO_VPC and peering=FOR_SELF. NOTE: For IPv6 Ranges this field is compulsory,
@@ -184,6 +200,44 @@ public InternalRange setDescription(java.lang.String description) {
184200
return this;
185201
}
186202

203+
/**
204+
* Optional. ExcludeCidrRanges flag. Specifies a set of CIDR blocks that allows exclusion of
205+
* particular CIDR ranges from the auto-allocation process, without having to reserve these blocks
206+
* @return value or {@code null} for none
207+
*/
208+
public java.util.List<java.lang.String> getExcludeCidrRanges() {
209+
return excludeCidrRanges;
210+
}
211+
212+
/**
213+
* Optional. ExcludeCidrRanges flag. Specifies a set of CIDR blocks that allows exclusion of
214+
* particular CIDR ranges from the auto-allocation process, without having to reserve these blocks
215+
* @param excludeCidrRanges excludeCidrRanges or {@code null} for none
216+
*/
217+
public InternalRange setExcludeCidrRanges(java.util.List<java.lang.String> excludeCidrRanges) {
218+
this.excludeCidrRanges = excludeCidrRanges;
219+
return this;
220+
}
221+
222+
/**
223+
* Optional. Immutable ranges cannot have their fields modified, except for labels and
224+
* description.
225+
* @return value or {@code null} for none
226+
*/
227+
public java.lang.Boolean getImmutable() {
228+
return immutable;
229+
}
230+
231+
/**
232+
* Optional. Immutable ranges cannot have their fields modified, except for labels and
233+
* description.
234+
* @param immutable immutable or {@code null} for none
235+
*/
236+
public InternalRange setImmutable(java.lang.Boolean immutable) {
237+
this.immutable = immutable;
238+
return this;
239+
}
240+
187241
/**
188242
* The IP range that this internal range defines. NOTE: IPv6 ranges are limited to
189243
* usage=EXTERNAL_TO_VPC and peering=FOR_SELF. NOTE: For IPv6 Ranges this field is compulsory,

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ public final class LinkedProducerVpcNetwork extends com.google.api.client.json.G
6767
@com.google.api.client.util.Key
6868
private java.lang.String producerNetwork;
6969

70+
/**
71+
* Output only. The proposed exclude export IP ranges waiting for hub administration's approval.
72+
* The value may be {@code null}.
73+
*/
74+
@com.google.api.client.util.Key
75+
private java.util.List<java.lang.String> proposedExcludeExportRanges;
76+
7077
/**
7178
* Optional. The proposed include export IP ranges waiting for hub administration's approval.
7279
* The value may be {@code null}.
@@ -170,6 +177,23 @@ public LinkedProducerVpcNetwork setProducerNetwork(java.lang.String producerNetw
170177
return this;
171178
}
172179

180+
/**
181+
* Output only. The proposed exclude export IP ranges waiting for hub administration's approval.
182+
* @return value or {@code null} for none
183+
*/
184+
public java.util.List<java.lang.String> getProposedExcludeExportRanges() {
185+
return proposedExcludeExportRanges;
186+
}
187+
188+
/**
189+
* Output only. The proposed exclude export IP ranges waiting for hub administration's approval.
190+
* @param proposedExcludeExportRanges proposedExcludeExportRanges or {@code null} for none
191+
*/
192+
public LinkedProducerVpcNetwork setProposedExcludeExportRanges(java.util.List<java.lang.String> proposedExcludeExportRanges) {
193+
this.proposedExcludeExportRanges = proposedExcludeExportRanges;
194+
return this;
195+
}
196+
173197
/**
174198
* Optional. The proposed include export IP ranges waiting for hub administration's approval.
175199
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ public final class LinkedVpcNetwork extends com.google.api.client.json.GenericJs
5555
@com.google.api.client.util.Key
5656
private java.util.List<java.lang.String> producerVpcSpokes;
5757

58+
/**
59+
* Output only. The proposed exclude export IP ranges waiting for hub administration's approval.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.util.List<java.lang.String> proposedExcludeExportRanges;
64+
5865
/**
5966
* Optional. The proposed include export IP ranges waiting for hub administration's approval.
6067
* The value may be {@code null}.
@@ -128,6 +135,23 @@ public LinkedVpcNetwork setProducerVpcSpokes(java.util.List<java.lang.String> pr
128135
return this;
129136
}
130137

138+
/**
139+
* Output only. The proposed exclude export IP ranges waiting for hub administration's approval.
140+
* @return value or {@code null} for none
141+
*/
142+
public java.util.List<java.lang.String> getProposedExcludeExportRanges() {
143+
return proposedExcludeExportRanges;
144+
}
145+
146+
/**
147+
* Output only. The proposed exclude export IP ranges waiting for hub administration's approval.
148+
* @param proposedExcludeExportRanges proposedExcludeExportRanges or {@code null} for none
149+
*/
150+
public LinkedVpcNetwork setProposedExcludeExportRanges(java.util.List<java.lang.String> proposedExcludeExportRanges) {
151+
this.proposedExcludeExportRanges = proposedExcludeExportRanges;
152+
return this;
153+
}
154+
131155
/**
132156
* Optional. The proposed include export IP ranges waiting for hub administration's approval.
133157
* @return value or {@code null} for none

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ public final class RegionalEndpoint extends com.google.api.client.json.GenericJs
7878
private java.util.Map<String, java.lang.String> labels;
7979

8080
/**
81-
* Output only. The name of a RegionalEndpoint. Format:
82-
* `projects/{project}/locations/{location}/regionalEndpoints/{regional_endpoint}`.
81+
* Output only. The name of a RegionalEndpoint. Pattern: `projects/{project}/locations/{location}/
82+
* regionalEndpoints/^[-a-z0-9](?:[-a-z0-9]{0,44})[a-z0-9]$`.
8383
* The value may be {@code null}.
8484
*/
8585
@com.google.api.client.util.Key
@@ -238,17 +238,17 @@ public RegionalEndpoint setLabels(java.util.Map<String, java.lang.String> labels
238238
}
239239

240240
/**
241-
* Output only. The name of a RegionalEndpoint. Format:
242-
* `projects/{project}/locations/{location}/regionalEndpoints/{regional_endpoint}`.
241+
* Output only. The name of a RegionalEndpoint. Pattern: `projects/{project}/locations/{location}/
242+
* regionalEndpoints/^[-a-z0-9](?:[-a-z0-9]{0,44})[a-z0-9]$`.
243243
* @return value or {@code null} for none
244244
*/
245245
public java.lang.String getName() {
246246
return name;
247247
}
248248

249249
/**
250-
* Output only. The name of a RegionalEndpoint. Format:
251-
* `projects/{project}/locations/{location}/regionalEndpoints/{regional_endpoint}`.
250+
* Output only. The name of a RegionalEndpoint. Pattern: `projects/{project}/locations/{location}/
251+
* regionalEndpoints/^[-a-z0-9](?:[-a-z0-9]{0,44})[a-z0-9]$`.
252252
* @param name name or {@code null} for none
253253
*/
254254
public RegionalEndpoint setName(java.lang.String name) {

clients/google-api-services-networkconnectivity/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-networkconnectivity</artifactId>
11-
<version>v1-rev20250226-2.0.0</version>
12-
<name>Network Connectivity API v1-rev20250226-2.0.0</name>
11+
<version>v1-rev20250318-2.0.0</version>
12+
<name>Network Connectivity API v1-rev20250318-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-networkconnectivity/v1alpha1/2.0.0/com/google/api/services/networkconnectivity/v1alpha1/model/InternalRange.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ public final class InternalRange extends com.google.api.client.json.GenericJson
4646
@com.google.api.client.util.Key
4747
private java.lang.String description;
4848

49+
/**
50+
* Optional. ExcludeCidrRanges flag. Specifies a set of CIDR blocks that allows exclusion of
51+
* particular CIDR ranges from the auto-allocation process, without having to reserve these blocks
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.util.List<java.lang.String> excludeCidrRanges;
56+
4957
/**
5058
* Optional. Immutable ranges cannot have their fields modified, except for labels and
5159
* description.
@@ -192,6 +200,25 @@ public InternalRange setDescription(java.lang.String description) {
192200
return this;
193201
}
194202

203+
/**
204+
* Optional. ExcludeCidrRanges flag. Specifies a set of CIDR blocks that allows exclusion of
205+
* particular CIDR ranges from the auto-allocation process, without having to reserve these blocks
206+
* @return value or {@code null} for none
207+
*/
208+
public java.util.List<java.lang.String> getExcludeCidrRanges() {
209+
return excludeCidrRanges;
210+
}
211+
212+
/**
213+
* Optional. ExcludeCidrRanges flag. Specifies a set of CIDR blocks that allows exclusion of
214+
* particular CIDR ranges from the auto-allocation process, without having to reserve these blocks
215+
* @param excludeCidrRanges excludeCidrRanges or {@code null} for none
216+
*/
217+
public InternalRange setExcludeCidrRanges(java.util.List<java.lang.String> excludeCidrRanges) {
218+
this.excludeCidrRanges = excludeCidrRanges;
219+
return this;
220+
}
221+
195222
/**
196223
* Optional. Immutable ranges cannot have their fields modified, except for labels and
197224
* description.

0 commit comments

Comments
 (0)