Skip to content

Commit 61f8239

Browse files
1 parent 5812d79 commit 61f8239

16 files changed

+552
-12
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-rev20250616-2.0.0</version>
25+
<version>v1-rev20250714-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-rev20250616-2.0.0'
38+
implementation 'com.google.apis:google-api-services-beyondcorp:v1-rev20250714-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ public final class GoogleCloudBeyondcorpSecuritygatewaysV1Application extends co
7070
@com.google.api.client.util.Key
7171
private String updateTime;
7272

73+
/**
74+
* Optional. Which upstream resources to forward traffic to.
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream> upstreams;
79+
7380
/**
7481
* Output only. Timestamp when the resource was created.
7582
* @return value or {@code null} for none
@@ -167,6 +174,23 @@ public GoogleCloudBeyondcorpSecuritygatewaysV1Application setUpdateTime(String u
167174
return this;
168175
}
169176

177+
/**
178+
* Optional. Which upstream resources to forward traffic to.
179+
* @return value or {@code null} for none
180+
*/
181+
public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream> getUpstreams() {
182+
return upstreams;
183+
}
184+
185+
/**
186+
* Optional. Which upstream resources to forward traffic to.
187+
* @param upstreams upstreams or {@code null} for none
188+
*/
189+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setUpstreams(java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream> upstreams) {
190+
this.upstreams = upstreams;
191+
return this;
192+
}
193+
170194
@Override
171195
public GoogleCloudBeyondcorpSecuritygatewaysV1Application set(String fieldName, Object value) {
172196
return (GoogleCloudBeyondcorpSecuritygatewaysV1Application) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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+
* Which upstream resource 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 GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Routing policy information.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy egressPolicy;
38+
39+
/**
40+
* Network to forward traffic to.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork network;
45+
46+
/**
47+
* Optional. Routing policy information.
48+
* @return value or {@code null} for none
49+
*/
50+
public GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy getEgressPolicy() {
51+
return egressPolicy;
52+
}
53+
54+
/**
55+
* Optional. Routing policy information.
56+
* @param egressPolicy egressPolicy or {@code null} for none
57+
*/
58+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream setEgressPolicy(GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy egressPolicy) {
59+
this.egressPolicy = egressPolicy;
60+
return this;
61+
}
62+
63+
/**
64+
* Network to forward traffic to.
65+
* @return value or {@code null} for none
66+
*/
67+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork getNetwork() {
68+
return network;
69+
}
70+
71+
/**
72+
* Network to forward traffic to.
73+
* @param network network or {@code null} for none
74+
*/
75+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream setNetwork(GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork network) {
76+
this.network = network;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream set(String fieldName, Object value) {
82+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream clone() {
87+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream) super.clone();
88+
}
89+
90+
}
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+
* Network 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 GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Network name is of the format: `projects/{project}/global/networks/{network}
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String name;
38+
39+
/**
40+
* Required. Network name is of the format: `projects/{project}/global/networks/{network}
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getName() {
44+
return name;
45+
}
46+
47+
/**
48+
* Required. Network name is of the format: `projects/{project}/global/networks/{network}
49+
* @param name name or {@code null} for none
50+
*/
51+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork setName(java.lang.String name) {
52+
this.name = name;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork set(String fieldName, Object value) {
58+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork clone() {
63+
return (GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork) super.clone();
64+
}
65+
66+
}
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+
* Routing policy information.
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 GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. List of the regions where the application sends traffic.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> regions;
38+
39+
/**
40+
* Required. List of the regions where the application sends traffic.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<java.lang.String> getRegions() {
44+
return regions;
45+
}
46+
47+
/**
48+
* Required. List of the regions where the application sends traffic.
49+
* @param regions regions or {@code null} for none
50+
*/
51+
public GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy setRegions(java.util.List<java.lang.String> regions) {
52+
this.regions = regions;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy set(String fieldName, Object value) {
58+
return (GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy clone() {
63+
return (GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy) super.clone();
64+
}
65+
66+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway extend
3636
@com.google.api.client.util.Key
3737
private String createTime;
3838

39+
/**
40+
* Output only. Service account used for operations that involve resources in consumer projects.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String delegatingServiceAccount;
45+
3946
/**
4047
* Optional. An arbitrary user-provided name for the SecurityGateway. Cannot exceed 64 characters.
4148
* The value may be {@code null}.
@@ -101,6 +108,23 @@ public GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway setCreateTime(Stri
101108
return this;
102109
}
103110

111+
/**
112+
* Output only. Service account used for operations that involve resources in consumer projects.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.lang.String getDelegatingServiceAccount() {
116+
return delegatingServiceAccount;
117+
}
118+
119+
/**
120+
* Output only. Service account used for operations that involve resources in consumer projects.
121+
* @param delegatingServiceAccount delegatingServiceAccount or {@code null} for none
122+
*/
123+
public GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway setDelegatingServiceAccount(java.lang.String delegatingServiceAccount) {
124+
this.delegatingServiceAccount = delegatingServiceAccount;
125+
return this;
126+
}
127+
104128
/**
105129
* Optional. An arbitrary user-provided name for the SecurityGateway. Cannot exceed 64 characters.
106130
* @return value or {@code null} for none

clients/google-api-services-beyondcorp/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-beyondcorp</artifactId>
11-
<version>v1-rev20250616-2.0.0</version>
12-
<name>BeyondCorp API v1-rev20250616-2.0.0</name>
11+
<version>v1-rev20250714-2.0.0</version>
12+
<name>BeyondCorp API v1-rev20250714-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

0 commit comments

Comments
 (0)