Skip to content

Commit e5b6a40

Browse files
1 parent 7641758 commit e5b6a40

14 files changed

+3535
-6
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-rev20240802-2.0.0</version>
25+
<version>v1-rev20240925-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-rev20240802-2.0.0'
38+
implementation 'com.google.apis:google-api-services-beyondcorp:v1-rev20240925-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 2212 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
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+
* A Beyondcorp Application resource 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 GoogleCloudBeyondcorpSecuritygatewaysV1Application extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Timestamp when the resource was created.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String createTime;
38+
39+
/**
40+
* Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64
41+
* characters.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String displayName;
46+
47+
/**
48+
* Required. Endpoint matchers associated with an application. A combination of hostname and ports
49+
* as endpoint matcher is used to match the application. Match conditions for OR logic. An array
50+
* of match conditions to allow for multiple matching criteria. The rule is considered a match if
51+
* one the conditions are met. The conditions can be one of the following combination (Hostname),
52+
* (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports -
53+
* ("abc.com" and "22"), ("abc.com" and "22,33") etc
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher> endpointMatchers;
58+
59+
/**
60+
* Identifier. Name of the resource.
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private java.lang.String name;
65+
66+
/**
67+
* Output only. Timestamp when the resource was last modified.
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key
71+
private String updateTime;
72+
73+
/**
74+
* Output only. Timestamp when the resource was created.
75+
* @return value or {@code null} for none
76+
*/
77+
public String getCreateTime() {
78+
return createTime;
79+
}
80+
81+
/**
82+
* Output only. Timestamp when the resource was created.
83+
* @param createTime createTime or {@code null} for none
84+
*/
85+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setCreateTime(String createTime) {
86+
this.createTime = createTime;
87+
return this;
88+
}
89+
90+
/**
91+
* Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64
92+
* characters.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getDisplayName() {
96+
return displayName;
97+
}
98+
99+
/**
100+
* Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64
101+
* characters.
102+
* @param displayName displayName or {@code null} for none
103+
*/
104+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setDisplayName(java.lang.String displayName) {
105+
this.displayName = displayName;
106+
return this;
107+
}
108+
109+
/**
110+
* Required. Endpoint matchers associated with an application. A combination of hostname and ports
111+
* as endpoint matcher is used to match the application. Match conditions for OR logic. An array
112+
* of match conditions to allow for multiple matching criteria. The rule is considered a match if
113+
* one the conditions are met. The conditions can be one of the following combination (Hostname),
114+
* (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports -
115+
* ("abc.com" and "22"), ("abc.com" and "22,33") etc
116+
* @return value or {@code null} for none
117+
*/
118+
public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher> getEndpointMatchers() {
119+
return endpointMatchers;
120+
}
121+
122+
/**
123+
* Required. Endpoint matchers associated with an application. A combination of hostname and ports
124+
* as endpoint matcher is used to match the application. Match conditions for OR logic. An array
125+
* of match conditions to allow for multiple matching criteria. The rule is considered a match if
126+
* one the conditions are met. The conditions can be one of the following combination (Hostname),
127+
* (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports -
128+
* ("abc.com" and "22"), ("abc.com" and "22,33") etc
129+
* @param endpointMatchers endpointMatchers or {@code null} for none
130+
*/
131+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setEndpointMatchers(java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher> endpointMatchers) {
132+
this.endpointMatchers = endpointMatchers;
133+
return this;
134+
}
135+
136+
/**
137+
* Identifier. Name of the resource.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.String getName() {
141+
return name;
142+
}
143+
144+
/**
145+
* Identifier. Name of the resource.
146+
* @param name name or {@code null} for none
147+
*/
148+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setName(java.lang.String name) {
149+
this.name = name;
150+
return this;
151+
}
152+
153+
/**
154+
* Output only. Timestamp when the resource was last modified.
155+
* @return value or {@code null} for none
156+
*/
157+
public String getUpdateTime() {
158+
return updateTime;
159+
}
160+
161+
/**
162+
* Output only. Timestamp when the resource was last modified.
163+
* @param updateTime updateTime or {@code null} for none
164+
*/
165+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application setUpdateTime(String updateTime) {
166+
this.updateTime = updateTime;
167+
return this;
168+
}
169+
170+
@Override
171+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application set(String fieldName, Object value) {
172+
return (GoogleCloudBeyondcorpSecuritygatewaysV1Application) super.set(fieldName, value);
173+
}
174+
175+
@Override
176+
public GoogleCloudBeyondcorpSecuritygatewaysV1Application clone() {
177+
return (GoogleCloudBeyondcorpSecuritygatewaysV1Application) super.clone();
178+
}
179+
180+
}
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+
* EndpointMatcher contains the information of the endpoint that will match the application.
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 GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Hostname of the application.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String hostname;
38+
39+
/**
40+
* Optional. Ports of the application.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<java.lang.Integer> ports;
45+
46+
/**
47+
* Required. Hostname of the application.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getHostname() {
51+
return hostname;
52+
}
53+
54+
/**
55+
* Required. Hostname of the application.
56+
* @param hostname hostname or {@code null} for none
57+
*/
58+
public GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher setHostname(java.lang.String hostname) {
59+
this.hostname = hostname;
60+
return this;
61+
}
62+
63+
/**
64+
* Optional. Ports of the application.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.util.List<java.lang.Integer> getPorts() {
68+
return ports;
69+
}
70+
71+
/**
72+
* Optional. Ports of the application.
73+
* @param ports ports or {@code null} for none
74+
*/
75+
public GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher setPorts(java.util.List<java.lang.Integer> ports) {
76+
this.ports = ports;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher set(String fieldName, Object value) {
82+
return (GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher clone() {
87+
return (GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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+
* The Hub message contains information pertaining to the regional data path deployments.
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 GoogleCloudBeyondcorpSecuritygatewaysV1Hub extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
34+
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
35+
* the Hub along with the total IPs allocated to handle the capacity limits.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig natGatewayConfig;
40+
41+
/**
42+
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
43+
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
44+
* the Hub along with the total IPs allocated to handle the capacity limits.
45+
* @return value or {@code null} for none
46+
*/
47+
public GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig getNatGatewayConfig() {
48+
return natGatewayConfig;
49+
}
50+
51+
/**
52+
* Optional. NAT gateway setup to ensure enough NAT IP addresses are available to handle the
53+
* traffic needed to access the applications. Allows to explicitly enable or disable the NAT in
54+
* the Hub along with the total IPs allocated to handle the capacity limits.
55+
* @param natGatewayConfig natGatewayConfig or {@code null} for none
56+
*/
57+
public GoogleCloudBeyondcorpSecuritygatewaysV1Hub setNatGatewayConfig(GoogleCloudBeyondcorpSecuritygatewaysV1NatGatewayConfig natGatewayConfig) {
58+
this.natGatewayConfig = natGatewayConfig;
59+
return this;
60+
}
61+
62+
@Override
63+
public GoogleCloudBeyondcorpSecuritygatewaysV1Hub set(String fieldName, Object value) {
64+
return (GoogleCloudBeyondcorpSecuritygatewaysV1Hub) super.set(fieldName, value);
65+
}
66+
67+
@Override
68+
public GoogleCloudBeyondcorpSecuritygatewaysV1Hub clone() {
69+
return (GoogleCloudBeyondcorpSecuritygatewaysV1Hub) super.clone();
70+
}
71+
72+
}

0 commit comments

Comments
 (0)