Skip to content

Commit 7a91fbf

Browse files
1 parent 9b0596e commit 7a91fbf

11 files changed

+713
-6
lines changed

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

clients/google-api-services-gkeonprem/v1/2.0.0/com/google/api/services/gkeonprem/v1/GKEOnPrem.java

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8563,6 +8563,22 @@ public Create setAllowPreflightFailure(java.lang.Boolean allowPreflightFailure)
85638563
return this;
85648564
}
85658565

8566+
/** Optional. If set, skip the specified validations. */
8567+
@com.google.api.client.util.Key
8568+
private java.util.List<java.lang.String> skipValidations;
8569+
8570+
/** Optional. If set, skip the specified validations.
8571+
*/
8572+
public java.util.List<java.lang.String> getSkipValidations() {
8573+
return skipValidations;
8574+
}
8575+
8576+
/** Optional. If set, skip the specified validations. */
8577+
public Create setSkipValidations(java.util.List<java.lang.String> skipValidations) {
8578+
this.skipValidations = skipValidations;
8579+
return this;
8580+
}
8581+
85668582
/** Validate the request without actually doing any updates. */
85678583
@com.google.api.client.util.Key
85688584
private java.lang.Boolean validateOnly;
@@ -9513,6 +9529,22 @@ public Patch setName(java.lang.String name) {
95139529
return this;
95149530
}
95159531

9532+
/** Optional. If set, the server-side preflight checks will be skipped. */
9533+
@com.google.api.client.util.Key
9534+
private java.util.List<java.lang.String> skipValidations;
9535+
9536+
/** Optional. If set, the server-side preflight checks will be skipped.
9537+
*/
9538+
public java.util.List<java.lang.String> getSkipValidations() {
9539+
return skipValidations;
9540+
}
9541+
9542+
/** Optional. If set, the server-side preflight checks will be skipped. */
9543+
public Patch setSkipValidations(java.util.List<java.lang.String> skipValidations) {
9544+
this.skipValidations = skipValidations;
9545+
return this;
9546+
}
9547+
95169548
/**
95179549
* Required. Field mask is used to specify the fields to be overwritten in the
95189550
* VMwareAdminCluster resource by the update. The fields specified in the update_mask are
@@ -10677,6 +10709,22 @@ public Create setAllowPreflightFailure(java.lang.Boolean allowPreflightFailure)
1067710709
return this;
1067810710
}
1067910711

10712+
/** Optional. List of validations to skip during cluster creation. */
10713+
@com.google.api.client.util.Key
10714+
private java.util.List<java.lang.String> skipValidations;
10715+
10716+
/** Optional. List of validations to skip during cluster creation.
10717+
*/
10718+
public java.util.List<java.lang.String> getSkipValidations() {
10719+
return skipValidations;
10720+
}
10721+
10722+
/** Optional. List of validations to skip during cluster creation. */
10723+
public Create setSkipValidations(java.util.List<java.lang.String> skipValidations) {
10724+
this.skipValidations = skipValidations;
10725+
return this;
10726+
}
10727+
1068010728
/** Validate the request without actually doing any updates. */
1068110729
@com.google.api.client.util.Key
1068210730
private java.lang.Boolean validateOnly;
@@ -11899,6 +11947,21 @@ public Patch setName(java.lang.String name) {
1189911947
return this;
1190011948
}
1190111949

11950+
@com.google.api.client.util.Key
11951+
private java.util.List<java.lang.String> skipValidations;
11952+
11953+
/**
11954+
11955+
*/
11956+
public java.util.List<java.lang.String> getSkipValidations() {
11957+
return skipValidations;
11958+
}
11959+
11960+
public Patch setSkipValidations(java.util.List<java.lang.String> skipValidations) {
11961+
this.skipValidations = skipValidations;
11962+
return this;
11963+
}
11964+
1190211965
/**
1190311966
* Required. Field mask is used to specify the fields to be overwritten in the
1190411967
* VMwareCluster resource by the update. The fields specified in the update_mask are
Lines changed: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
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.gkeonprem.v1.model;
18+
19+
/**
20+
* BareMetalAdminBgpLbConfig represents configuration parameters for a Border Gateway Protocol (BGP)
21+
* load balancer.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the GKE On-Prem API. For a detailed explanation 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 BareMetalAdminBgpLbConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. AddressPools is a list of non-overlapping IP pools used by load balancer typed
35+
* services. All addresses must be routable to load balancer nodes. IngressVIP must be included in
36+
* the pools.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.util.List<BareMetalAdminLoadBalancerAddressPool> addressPools;
41+
42+
/**
43+
* Required. BGP autonomous system number (ASN) of the cluster. This field can be updated after
44+
* cluster creation.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
48+
private java.lang.Long asn;
49+
50+
/**
51+
* Required. The list of BGP peers that the cluster will connect to. At least one peer must be
52+
* configured for each control plane node. Control plane nodes will connect to these peers to
53+
* advertise the control plane VIP. The Services load balancer also uses these peers by default.
54+
* This field can be updated after cluster creation.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.List<BareMetalAdminBgpPeerConfig> bgpPeerConfigs;
59+
60+
/**
61+
* Specifies the node pool running data plane load balancing. L2 connectivity is required among
62+
* nodes in this pool. If missing, the control plane node pool is used for data plane load
63+
* balancing.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private BareMetalAdminLoadBalancerNodePoolConfig loadBalancerNodePoolConfig;
68+
69+
/**
70+
* Required. AddressPools is a list of non-overlapping IP pools used by load balancer typed
71+
* services. All addresses must be routable to load balancer nodes. IngressVIP must be included in
72+
* the pools.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.util.List<BareMetalAdminLoadBalancerAddressPool> getAddressPools() {
76+
return addressPools;
77+
}
78+
79+
/**
80+
* Required. AddressPools is a list of non-overlapping IP pools used by load balancer typed
81+
* services. All addresses must be routable to load balancer nodes. IngressVIP must be included in
82+
* the pools.
83+
* @param addressPools addressPools or {@code null} for none
84+
*/
85+
public BareMetalAdminBgpLbConfig setAddressPools(java.util.List<BareMetalAdminLoadBalancerAddressPool> addressPools) {
86+
this.addressPools = addressPools;
87+
return this;
88+
}
89+
90+
/**
91+
* Required. BGP autonomous system number (ASN) of the cluster. This field can be updated after
92+
* cluster creation.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.Long getAsn() {
96+
return asn;
97+
}
98+
99+
/**
100+
* Required. BGP autonomous system number (ASN) of the cluster. This field can be updated after
101+
* cluster creation.
102+
* @param asn asn or {@code null} for none
103+
*/
104+
public BareMetalAdminBgpLbConfig setAsn(java.lang.Long asn) {
105+
this.asn = asn;
106+
return this;
107+
}
108+
109+
/**
110+
* Required. The list of BGP peers that the cluster will connect to. At least one peer must be
111+
* configured for each control plane node. Control plane nodes will connect to these peers to
112+
* advertise the control plane VIP. The Services load balancer also uses these peers by default.
113+
* This field can be updated after cluster creation.
114+
* @return value or {@code null} for none
115+
*/
116+
public java.util.List<BareMetalAdminBgpPeerConfig> getBgpPeerConfigs() {
117+
return bgpPeerConfigs;
118+
}
119+
120+
/**
121+
* Required. The list of BGP peers that the cluster will connect to. At least one peer must be
122+
* configured for each control plane node. Control plane nodes will connect to these peers to
123+
* advertise the control plane VIP. The Services load balancer also uses these peers by default.
124+
* This field can be updated after cluster creation.
125+
* @param bgpPeerConfigs bgpPeerConfigs or {@code null} for none
126+
*/
127+
public BareMetalAdminBgpLbConfig setBgpPeerConfigs(java.util.List<BareMetalAdminBgpPeerConfig> bgpPeerConfigs) {
128+
this.bgpPeerConfigs = bgpPeerConfigs;
129+
return this;
130+
}
131+
132+
/**
133+
* Specifies the node pool running data plane load balancing. L2 connectivity is required among
134+
* nodes in this pool. If missing, the control plane node pool is used for data plane load
135+
* balancing.
136+
* @return value or {@code null} for none
137+
*/
138+
public BareMetalAdminLoadBalancerNodePoolConfig getLoadBalancerNodePoolConfig() {
139+
return loadBalancerNodePoolConfig;
140+
}
141+
142+
/**
143+
* Specifies the node pool running data plane load balancing. L2 connectivity is required among
144+
* nodes in this pool. If missing, the control plane node pool is used for data plane load
145+
* balancing.
146+
* @param loadBalancerNodePoolConfig loadBalancerNodePoolConfig or {@code null} for none
147+
*/
148+
public BareMetalAdminBgpLbConfig setLoadBalancerNodePoolConfig(BareMetalAdminLoadBalancerNodePoolConfig loadBalancerNodePoolConfig) {
149+
this.loadBalancerNodePoolConfig = loadBalancerNodePoolConfig;
150+
return this;
151+
}
152+
153+
@Override
154+
public BareMetalAdminBgpLbConfig set(String fieldName, Object value) {
155+
return (BareMetalAdminBgpLbConfig) super.set(fieldName, value);
156+
}
157+
158+
@Override
159+
public BareMetalAdminBgpLbConfig clone() {
160+
return (BareMetalAdminBgpLbConfig) super.clone();
161+
}
162+
163+
}
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
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.gkeonprem.v1.model;
18+
19+
/**
20+
* BareMetalAdminBgpPeerConfig represents configuration parameters for a Border Gateway Protocol
21+
* (BGP) peer.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the GKE On-Prem API. For a detailed explanation 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 BareMetalAdminBgpPeerConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. BGP autonomous system number (ASN) for the network that contains the external peer
35+
* device.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
39+
private java.lang.Long asn;
40+
41+
/**
42+
* The IP address of the control plane node that connects to the external peer. If you don't
43+
* specify any control plane nodes, all control plane nodes can connect to the external peer. If
44+
* you specify one or more IP addresses, only the nodes specified participate in peering sessions.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.util.List<java.lang.String> controlPlaneNodes;
49+
50+
/**
51+
* Required. The IP address of the external peer device.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String ipAddress;
56+
57+
/**
58+
* Required. BGP autonomous system number (ASN) for the network that contains the external peer
59+
* device.
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.Long getAsn() {
63+
return asn;
64+
}
65+
66+
/**
67+
* Required. BGP autonomous system number (ASN) for the network that contains the external peer
68+
* device.
69+
* @param asn asn or {@code null} for none
70+
*/
71+
public BareMetalAdminBgpPeerConfig setAsn(java.lang.Long asn) {
72+
this.asn = asn;
73+
return this;
74+
}
75+
76+
/**
77+
* The IP address of the control plane node that connects to the external peer. If you don't
78+
* specify any control plane nodes, all control plane nodes can connect to the external peer. If
79+
* you specify one or more IP addresses, only the nodes specified participate in peering sessions.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.util.List<java.lang.String> getControlPlaneNodes() {
83+
return controlPlaneNodes;
84+
}
85+
86+
/**
87+
* The IP address of the control plane node that connects to the external peer. If you don't
88+
* specify any control plane nodes, all control plane nodes can connect to the external peer. If
89+
* you specify one or more IP addresses, only the nodes specified participate in peering sessions.
90+
* @param controlPlaneNodes controlPlaneNodes or {@code null} for none
91+
*/
92+
public BareMetalAdminBgpPeerConfig setControlPlaneNodes(java.util.List<java.lang.String> controlPlaneNodes) {
93+
this.controlPlaneNodes = controlPlaneNodes;
94+
return this;
95+
}
96+
97+
/**
98+
* Required. The IP address of the external peer device.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.String getIpAddress() {
102+
return ipAddress;
103+
}
104+
105+
/**
106+
* Required. The IP address of the external peer device.
107+
* @param ipAddress ipAddress or {@code null} for none
108+
*/
109+
public BareMetalAdminBgpPeerConfig setIpAddress(java.lang.String ipAddress) {
110+
this.ipAddress = ipAddress;
111+
return this;
112+
}
113+
114+
@Override
115+
public BareMetalAdminBgpPeerConfig set(String fieldName, Object value) {
116+
return (BareMetalAdminBgpPeerConfig) super.set(fieldName, value);
117+
}
118+
119+
@Override
120+
public BareMetalAdminBgpPeerConfig clone() {
121+
return (BareMetalAdminBgpPeerConfig) super.clone();
122+
}
123+
124+
}

0 commit comments

Comments
 (0)