Skip to content

Commit cf556d0

Browse files
1 parent a17c4de commit cf556d0

File tree

34 files changed

+1998
-36
lines changed

34 files changed

+1998
-36
lines changed

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

clients/google-api-services-beyondcorp/v1/2.0.0/com/google/api/services/beyondcorp/v1/model/GoogleCloudBeyondcorpSecuritygatewaysV1Application.java

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ public final class GoogleCloudBeyondcorpSecuritygatewaysV1Application extends co
4848
* Required. Endpoint matchers associated with an application. A combination of hostname and ports
4949
* as endpoint matchers is used to match the application. Match conditions for OR logic. An array
5050
* of match conditions to allow for multiple matching criteria. The rule is considered a match if
51-
* one of the conditions is met. The conditions can be one of the following combinations
52-
* (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.example.com"), ("xyz.example.com")
53-
* Hostname and Ports - ("example.com" and "22"), ("example.com" and "22,33") etc
51+
* one of the conditions is met. The conditions should be the following combination: (Hostname &
52+
* Ports) EXAMPLES: Hostname and Ports - ("*.example.com", "443"), ("example.com" and "22"),
53+
* ("example.com" and "22,33") etc
5454
* The value may be {@code null}.
5555
*/
5656
@com.google.api.client.util.Key
@@ -63,6 +63,13 @@ public final class GoogleCloudBeyondcorpSecuritygatewaysV1Application extends co
6363
@com.google.api.client.util.Key
6464
private java.lang.String name;
6565

66+
/**
67+
* Optional. Type of the external application.
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key
71+
private java.lang.String schema;
72+
6673
/**
6774
* Output only. Timestamp when the resource was last modified.
6875
* The value may be {@code null}.
@@ -117,9 +124,9 @@ public GoogleCloudBeyondcorpSecuritygatewaysV1Application setDisplayName(java.la
117124
* Required. Endpoint matchers associated with an application. A combination of hostname and ports
118125
* as endpoint matchers is used to match the application. Match conditions for OR logic. An array
119126
* of match conditions to allow for multiple matching criteria. The rule is considered a match if
120-
* one of the conditions is met. The conditions can be one of the following combinations
121-
* (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.example.com"), ("xyz.example.com")
122-
* Hostname and Ports - ("example.com" and "22"), ("example.com" and "22,33") etc
127+
* one of the conditions is met. The conditions should be the following combination: (Hostname &
128+
* Ports) EXAMPLES: Hostname and Ports - ("*.example.com", "443"), ("example.com" and "22"),
129+
* ("example.com" and "22,33") etc
123130
* @return value or {@code null} for none
124131
*/
125132
public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher> getEndpointMatchers() {
@@ -130,9 +137,9 @@ public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher> ge
130137
* Required. Endpoint matchers associated with an application. A combination of hostname and ports
131138
* as endpoint matchers is used to match the application. Match conditions for OR logic. An array
132139
* of match conditions to allow for multiple matching criteria. The rule is considered a match if
133-
* one of the conditions is met. The conditions can be one of the following combinations
134-
* (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.example.com"), ("xyz.example.com")
135-
* Hostname and Ports - ("example.com" and "22"), ("example.com" and "22,33") etc
140+
* one of the conditions is met. The conditions should be the following combination: (Hostname &
141+
* Ports) EXAMPLES: Hostname and Ports - ("*.example.com", "443"), ("example.com" and "22"),
142+
* ("example.com" and "22,33") etc
136143
* @param endpointMatchers endpointMatchers or {@code null} for none
137144
*/
138145
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setEndpointMatchers(java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher> endpointMatchers) {
@@ -157,6 +164,23 @@ public GoogleCloudBeyondcorpSecuritygatewaysV1Application setName(java.lang.Stri
157164
return this;
158165
}
159166

167+
/**
168+
* Optional. Type of the external application.
169+
* @return value or {@code null} for none
170+
*/
171+
public java.lang.String getSchema() {
172+
return schema;
173+
}
174+
175+
/**
176+
* Optional. Type of the external application.
177+
* @param schema schema or {@code null} for none
178+
*/
179+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setSchema(java.lang.String schema) {
180+
this.schema = schema;
181+
return this;
182+
}
183+
160184
/**
161185
* Output only. Timestamp when the resource was last modified.
162186
* @return value or {@code null} for none

clients/google-api-services-beyondcorp/v1/2.0.0/com/google/api/services/beyondcorp/v1/model/GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,27 @@ public final class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream ex
3636
@com.google.api.client.util.Key
3737
private GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy egressPolicy;
3838

39+
/**
40+
* List of the external endpoints to forward traffic to.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal external;
45+
3946
/**
4047
* Network to forward traffic to.
4148
* The value may be {@code null}.
4249
*/
4350
@com.google.api.client.util.Key
4451
private GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork network;
4552

53+
/**
54+
* Optional. Enables proxy protocol configuration for the upstream.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig proxyProtocol;
59+
4660
/**
4761
* Optional. Routing policy information.
4862
* @return value or {@code null} for none
@@ -60,6 +74,23 @@ public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream setEgressPolic
6074
return this;
6175
}
6276

77+
/**
78+
* List of the external endpoints to forward traffic to.
79+
* @return value or {@code null} for none
80+
*/
81+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal getExternal() {
82+
return external;
83+
}
84+
85+
/**
86+
* List of the external endpoints to forward traffic to.
87+
* @param external external or {@code null} for none
88+
*/
89+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream setExternal(GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal external) {
90+
this.external = external;
91+
return this;
92+
}
93+
6394
/**
6495
* Network to forward traffic to.
6596
* @return value or {@code null} for none
@@ -77,6 +108,23 @@ public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream setNetwork(Goo
77108
return this;
78109
}
79110

111+
/**
112+
* Optional. Enables proxy protocol configuration for the upstream.
113+
* @return value or {@code null} for none
114+
*/
115+
public GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig getProxyProtocol() {
116+
return proxyProtocol;
117+
}
118+
119+
/**
120+
* Optional. Enables proxy protocol configuration for the upstream.
121+
* @param proxyProtocol proxyProtocol or {@code null} for none
122+
*/
123+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream setProxyProtocol(GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig proxyProtocol) {
124+
this.proxyProtocol = proxyProtocol;
125+
return this;
126+
}
127+
80128
@Override
81129
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream set(String fieldName, Object value) {
82130
return (GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.beyondcorp.v1.model;
18+
19+
/**
20+
* Endpoints to forward traffic to.
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 BeyondCorp API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. List of the endpoints to forward traffic to.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint> endpoints;
38+
39+
/**
40+
* Required. List of the endpoints to forward traffic to.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint> getEndpoints() {
44+
return endpoints;
45+
}
46+
47+
/**
48+
* Required. List of the endpoints to forward traffic to.
49+
* @param endpoints endpoints or {@code null} for none
50+
*/
51+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal setEndpoints(java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint> endpoints) {
52+
this.endpoints = endpoints;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal set(String fieldName, Object value) {
58+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal clone() {
63+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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.beyondcorp.v1.model;
18+
19+
/**
20+
* Contextual headers configuration.
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 BeyondCorp API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Device info configuration.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo deviceInfo;
38+
39+
/**
40+
* Optional. Group info configuration.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo groupInfo;
45+
46+
/**
47+
* Optional. Default output type for all enabled headers.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String outputType;
52+
53+
/**
54+
* Optional. User info configuration.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo userInfo;
59+
60+
/**
61+
* Optional. Device info configuration.
62+
* @return value or {@code null} for none
63+
*/
64+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo getDeviceInfo() {
65+
return deviceInfo;
66+
}
67+
68+
/**
69+
* Optional. Device info configuration.
70+
* @param deviceInfo deviceInfo or {@code null} for none
71+
*/
72+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders setDeviceInfo(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo deviceInfo) {
73+
this.deviceInfo = deviceInfo;
74+
return this;
75+
}
76+
77+
/**
78+
* Optional. Group info configuration.
79+
* @return value or {@code null} for none
80+
*/
81+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo getGroupInfo() {
82+
return groupInfo;
83+
}
84+
85+
/**
86+
* Optional. Group info configuration.
87+
* @param groupInfo groupInfo or {@code null} for none
88+
*/
89+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders setGroupInfo(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo groupInfo) {
90+
this.groupInfo = groupInfo;
91+
return this;
92+
}
93+
94+
/**
95+
* Optional. Default output type for all enabled headers.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.String getOutputType() {
99+
return outputType;
100+
}
101+
102+
/**
103+
* Optional. Default output type for all enabled headers.
104+
* @param outputType outputType or {@code null} for none
105+
*/
106+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders setOutputType(java.lang.String outputType) {
107+
this.outputType = outputType;
108+
return this;
109+
}
110+
111+
/**
112+
* Optional. User info configuration.
113+
* @return value or {@code null} for none
114+
*/
115+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo getUserInfo() {
116+
return userInfo;
117+
}
118+
119+
/**
120+
* Optional. User info configuration.
121+
* @param userInfo userInfo or {@code null} for none
122+
*/
123+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders setUserInfo(GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo userInfo) {
124+
this.userInfo = userInfo;
125+
return this;
126+
}
127+
128+
@Override
129+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders set(String fieldName, Object value) {
130+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders clone() {
135+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders) super.clone();
136+
}
137+
138+
}

0 commit comments

Comments
 (0)