Skip to content

Commit 4f071d4

Browse files
1 parent de249c6 commit 4f071d4

File tree

8 files changed

+217
-24
lines changed

8 files changed

+217
-24
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-rev20240911-2.0.0</version>
25+
<version>v1-rev20240923-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-rev20240911-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkconnectivity:v1-rev20240923-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
public final class LinkedInterconnectAttachments extends com.google.api.client.json.GenericJson {
3434

3535
/**
36-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
37-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
36+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
37+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
3838
* The value may be {@code null}.
3939
*/
4040
@com.google.api.client.util.Key
@@ -64,17 +64,17 @@ public final class LinkedInterconnectAttachments extends com.google.api.client.j
6464
private java.lang.String vpcNetwork;
6565

6666
/**
67-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
68-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
67+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
68+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
6969
* @return value or {@code null} for none
7070
*/
7171
public java.util.List<java.lang.String> getIncludeImportRanges() {
7272
return includeImportRanges;
7373
}
7474

7575
/**
76-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
77-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
76+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
77+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
7878
* @param includeImportRanges includeImportRanges or {@code null} for none
7979
*/
8080
public LinkedInterconnectAttachments setIncludeImportRanges(java.util.List<java.lang.String> includeImportRanges) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
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.networkconnectivity.v1.model;
18+
19+
/**
20+
* Next ID: 7
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 Connectivity 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 LinkedProducerVpcNetwork extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. IP ranges encompassing the subnets to be excluded from peering.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<java.lang.String> excludeExportRanges;
39+
40+
/**
41+
* Immutable. The URI of the Service Consumer VPC that the Producer VPC is peered with.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String network;
46+
47+
/**
48+
* Immutable. The name of the VPC peering between the Service Consumer VPC and the Producer VPC
49+
* (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE
50+
* state.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String peering;
55+
56+
/**
57+
* Output only. The URI of the Producer VPC.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String producerNetwork;
62+
63+
/**
64+
* Output only. The Service Consumer Network spoke.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private java.lang.String serviceConsumerVpcSpoke;
69+
70+
/**
71+
* Optional. IP ranges encompassing the subnets to be excluded from peering.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.util.List<java.lang.String> getExcludeExportRanges() {
75+
return excludeExportRanges;
76+
}
77+
78+
/**
79+
* Optional. IP ranges encompassing the subnets to be excluded from peering.
80+
* @param excludeExportRanges excludeExportRanges or {@code null} for none
81+
*/
82+
public LinkedProducerVpcNetwork setExcludeExportRanges(java.util.List<java.lang.String> excludeExportRanges) {
83+
this.excludeExportRanges = excludeExportRanges;
84+
return this;
85+
}
86+
87+
/**
88+
* Immutable. The URI of the Service Consumer VPC that the Producer VPC is peered with.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getNetwork() {
92+
return network;
93+
}
94+
95+
/**
96+
* Immutable. The URI of the Service Consumer VPC that the Producer VPC is peered with.
97+
* @param network network or {@code null} for none
98+
*/
99+
public LinkedProducerVpcNetwork setNetwork(java.lang.String network) {
100+
this.network = network;
101+
return this;
102+
}
103+
104+
/**
105+
* Immutable. The name of the VPC peering between the Service Consumer VPC and the Producer VPC
106+
* (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE
107+
* state.
108+
* @return value or {@code null} for none
109+
*/
110+
public java.lang.String getPeering() {
111+
return peering;
112+
}
113+
114+
/**
115+
* Immutable. The name of the VPC peering between the Service Consumer VPC and the Producer VPC
116+
* (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE
117+
* state.
118+
* @param peering peering or {@code null} for none
119+
*/
120+
public LinkedProducerVpcNetwork setPeering(java.lang.String peering) {
121+
this.peering = peering;
122+
return this;
123+
}
124+
125+
/**
126+
* Output only. The URI of the Producer VPC.
127+
* @return value or {@code null} for none
128+
*/
129+
public java.lang.String getProducerNetwork() {
130+
return producerNetwork;
131+
}
132+
133+
/**
134+
* Output only. The URI of the Producer VPC.
135+
* @param producerNetwork producerNetwork or {@code null} for none
136+
*/
137+
public LinkedProducerVpcNetwork setProducerNetwork(java.lang.String producerNetwork) {
138+
this.producerNetwork = producerNetwork;
139+
return this;
140+
}
141+
142+
/**
143+
* Output only. The Service Consumer Network spoke.
144+
* @return value or {@code null} for none
145+
*/
146+
public java.lang.String getServiceConsumerVpcSpoke() {
147+
return serviceConsumerVpcSpoke;
148+
}
149+
150+
/**
151+
* Output only. The Service Consumer Network spoke.
152+
* @param serviceConsumerVpcSpoke serviceConsumerVpcSpoke or {@code null} for none
153+
*/
154+
public LinkedProducerVpcNetwork setServiceConsumerVpcSpoke(java.lang.String serviceConsumerVpcSpoke) {
155+
this.serviceConsumerVpcSpoke = serviceConsumerVpcSpoke;
156+
return this;
157+
}
158+
159+
@Override
160+
public LinkedProducerVpcNetwork set(String fieldName, Object value) {
161+
return (LinkedProducerVpcNetwork) super.set(fieldName, value);
162+
}
163+
164+
@Override
165+
public LinkedProducerVpcNetwork clone() {
166+
return (LinkedProducerVpcNetwork) super.clone();
167+
}
168+
169+
}

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
public final class LinkedRouterApplianceInstances extends com.google.api.client.json.GenericJson {
3434

3535
/**
36-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
37-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
36+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
37+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
3838
* The value may be {@code null}.
3939
*/
4040
@com.google.api.client.util.Key
@@ -64,17 +64,17 @@ public final class LinkedRouterApplianceInstances extends com.google.api.client.
6464
private java.lang.String vpcNetwork;
6565

6666
/**
67-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
68-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
67+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
68+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
6969
* @return value or {@code null} for none
7070
*/
7171
public java.util.List<java.lang.String> getIncludeImportRanges() {
7272
return includeImportRanges;
7373
}
7474

7575
/**
76-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
77-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
76+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
77+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
7878
* @param includeImportRanges includeImportRanges or {@code null} for none
7979
*/
8080
public LinkedRouterApplianceInstances setIncludeImportRanges(java.util.List<java.lang.String> includeImportRanges) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
public final class LinkedVpnTunnels extends com.google.api.client.json.GenericJson {
3434

3535
/**
36-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
37-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
36+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
37+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
3838
* The value may be {@code null}.
3939
*/
4040
@com.google.api.client.util.Key
@@ -64,17 +64,17 @@ public final class LinkedVpnTunnels extends com.google.api.client.json.GenericJs
6464
private java.lang.String vpcNetwork;
6565

6666
/**
67-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
68-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
67+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
68+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
6969
* @return value or {@code null} for none
7070
*/
7171
public java.util.List<java.lang.String> getIncludeImportRanges() {
7272
return includeImportRanges;
7373
}
7474

7575
/**
76-
* Optional. IP ranges allowed to be included during import from hub.(does not control transit
77-
* connectivity) The only allowed value for now is "ALL_IPV4_RANGES".
76+
* Optional. IP ranges allowed to be included during import from hub (does not control transit
77+
* connectivity). The only allowed value for now is "ALL_IPV4_RANGES".
7878
* @param includeImportRanges includeImportRanges or {@code null} for none
7979
*/
8080
public LinkedVpnTunnels setIncludeImportRanges(java.util.List<java.lang.String> includeImportRanges) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ public final class Spoke extends com.google.api.client.json.GenericJson {
7777
@com.google.api.client.util.Key
7878
private LinkedInterconnectAttachments linkedInterconnectAttachments;
7979

80+
/**
81+
* Optional. The linked producer VPC that is associated with the spoke.
82+
* The value may be {@code null}.
83+
*/
84+
@com.google.api.client.util.Key
85+
private LinkedProducerVpcNetwork linkedProducerVpcNetwork;
86+
8087
/**
8188
* Router appliance instances that are associated with the spoke.
8289
* The value may be {@code null}.
@@ -250,6 +257,23 @@ public Spoke setLinkedInterconnectAttachments(LinkedInterconnectAttachments link
250257
return this;
251258
}
252259

260+
/**
261+
* Optional. The linked producer VPC that is associated with the spoke.
262+
* @return value or {@code null} for none
263+
*/
264+
public LinkedProducerVpcNetwork getLinkedProducerVpcNetwork() {
265+
return linkedProducerVpcNetwork;
266+
}
267+
268+
/**
269+
* Optional. The linked producer VPC that is associated with the spoke.
270+
* @param linkedProducerVpcNetwork linkedProducerVpcNetwork or {@code null} for none
271+
*/
272+
public Spoke setLinkedProducerVpcNetwork(LinkedProducerVpcNetwork linkedProducerVpcNetwork) {
273+
this.linkedProducerVpcNetwork = linkedProducerVpcNetwork;
274+
return this;
275+
}
276+
253277
/**
254278
* Router appliance instances that are associated with the spoke.
255279
* @return value or {@code null} for none

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

0 commit comments

Comments
 (0)