Skip to content

Commit 3ca0f47

Browse files
1 parent d8ede44 commit 3ca0f47

11 files changed

+5669
-2394
lines changed

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

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

Lines changed: 4772 additions & 2388 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
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.v1alpha.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 GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Application filter conditions associated with an application.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter applicationMatchFilter;
38+
39+
/**
40+
* Output only. Timestamp when the resource was created.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String createTime;
45+
46+
/**
47+
* Optional. An arbitrary user-provided name for the Route resource. Cannot exceed 64 characters.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String displayName;
52+
53+
/**
54+
* Identifier. Name of the resource.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String name;
59+
60+
/**
61+
* Output only. Timestamp when the resource was last modified.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private String updateTime;
66+
67+
/**
68+
* Required. Application filter conditions associated with an application.
69+
* @return value or {@code null} for none
70+
*/
71+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter getApplicationMatchFilter() {
72+
return applicationMatchFilter;
73+
}
74+
75+
/**
76+
* Required. Application filter conditions associated with an application.
77+
* @param applicationMatchFilter applicationMatchFilter or {@code null} for none
78+
*/
79+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setApplicationMatchFilter(GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter applicationMatchFilter) {
80+
this.applicationMatchFilter = applicationMatchFilter;
81+
return this;
82+
}
83+
84+
/**
85+
* Output only. Timestamp when the resource was created.
86+
* @return value or {@code null} for none
87+
*/
88+
public String getCreateTime() {
89+
return createTime;
90+
}
91+
92+
/**
93+
* Output only. Timestamp when the resource was created.
94+
* @param createTime createTime or {@code null} for none
95+
*/
96+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setCreateTime(String createTime) {
97+
this.createTime = createTime;
98+
return this;
99+
}
100+
101+
/**
102+
* Optional. An arbitrary user-provided name for the Route resource. Cannot exceed 64 characters.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getDisplayName() {
106+
return displayName;
107+
}
108+
109+
/**
110+
* Optional. An arbitrary user-provided name for the Route resource. Cannot exceed 64 characters.
111+
* @param displayName displayName or {@code null} for none
112+
*/
113+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setDisplayName(java.lang.String displayName) {
114+
this.displayName = displayName;
115+
return this;
116+
}
117+
118+
/**
119+
* Identifier. Name of the resource.
120+
* @return value or {@code null} for none
121+
*/
122+
public java.lang.String getName() {
123+
return name;
124+
}
125+
126+
/**
127+
* Identifier. Name of the resource.
128+
* @param name name or {@code null} for none
129+
*/
130+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setName(java.lang.String name) {
131+
this.name = name;
132+
return this;
133+
}
134+
135+
/**
136+
* Output only. Timestamp when the resource was last modified.
137+
* @return value or {@code null} for none
138+
*/
139+
public String getUpdateTime() {
140+
return updateTime;
141+
}
142+
143+
/**
144+
* Output only. Timestamp when the resource was last modified.
145+
* @param updateTime updateTime or {@code null} for none
146+
*/
147+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setUpdateTime(String updateTime) {
148+
this.updateTime = updateTime;
149+
return this;
150+
}
151+
152+
@Override
153+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication set(String fieldName, Object value) {
154+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication) super.set(fieldName, value);
155+
}
156+
157+
@Override
158+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication clone() {
159+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication) super.clone();
160+
}
161+
162+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
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.v1alpha.model;
18+
19+
/**
20+
* Match Criteria for Application Filtering.
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 GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Match conditions for AND logic. An array of match conditions to allow for multiple
34+
* matching criteria. The rule is considered a match if all the conditions are met. The conditions
35+
* can be one of the following combination (FQDN), (FQDN & PORTS), (IP_ADDRESS), (IP_ADDRESS &
36+
* PORTS) EXAMPLES: FQDN - ("*.abc.com"), ("xyz.abc.com") FQDN and PORTS - ("abc.com" and "22"),
37+
* ("abc.com" and "22,33)" etc IP_ADDRESS - ("10.20.30.40"), ("100.20.30.40") IP_ADDRESS and PORTS
38+
* - ("10.20.30.40" and "4"), ("10.20.30.40" and "4,5")
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition> matchConditions;
43+
44+
/**
45+
* Required. Match conditions for AND logic. An array of match conditions to allow for multiple
46+
* matching criteria. The rule is considered a match if all the conditions are met. The conditions
47+
* can be one of the following combination (FQDN), (FQDN & PORTS), (IP_ADDRESS), (IP_ADDRESS &
48+
* PORTS) EXAMPLES: FQDN - ("*.abc.com"), ("xyz.abc.com") FQDN and PORTS - ("abc.com" and "22"),
49+
* ("abc.com" and "22,33)" etc IP_ADDRESS - ("10.20.30.40"), ("100.20.30.40") IP_ADDRESS and PORTS
50+
* - ("10.20.30.40" and "4"), ("10.20.30.40" and "4,5")
51+
* @return value or {@code null} for none
52+
*/
53+
public java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition> getMatchConditions() {
54+
return matchConditions;
55+
}
56+
57+
/**
58+
* Required. Match conditions for AND logic. An array of match conditions to allow for multiple
59+
* matching criteria. The rule is considered a match if all the conditions are met. The conditions
60+
* can be one of the following combination (FQDN), (FQDN & PORTS), (IP_ADDRESS), (IP_ADDRESS &
61+
* PORTS) EXAMPLES: FQDN - ("*.abc.com"), ("xyz.abc.com") FQDN and PORTS - ("abc.com" and "22"),
62+
* ("abc.com" and "22,33)" etc IP_ADDRESS - ("10.20.30.40"), ("100.20.30.40") IP_ADDRESS and PORTS
63+
* - ("10.20.30.40" and "4"), ("10.20.30.40" and "4,5")
64+
* @param matchConditions matchConditions or {@code null} for none
65+
*/
66+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter setMatchConditions(java.util.List<GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition> matchConditions) {
67+
this.matchConditions = matchConditions;
68+
return this;
69+
}
70+
71+
@Override
72+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter set(String fieldName, Object value) {
73+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter) super.set(fieldName, value);
74+
}
75+
76+
@Override
77+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter clone() {
78+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter) super.clone();
79+
}
80+
81+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.v1alpha.model;
18+
19+
/**
20+
* Match condition for idenfying 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 GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. FQDN of the application.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String fqdn;
38+
39+
/**
40+
* Optional. IP Address of the application.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String ipAddress;
45+
46+
/**
47+
* Optional. Ports of the application.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<java.lang.Integer> ports;
52+
53+
/**
54+
* Optional. FQDN of the application.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getFqdn() {
58+
return fqdn;
59+
}
60+
61+
/**
62+
* Optional. FQDN of the application.
63+
* @param fqdn fqdn or {@code null} for none
64+
*/
65+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition setFqdn(java.lang.String fqdn) {
66+
this.fqdn = fqdn;
67+
return this;
68+
}
69+
70+
/**
71+
* Optional. IP Address of the application.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getIpAddress() {
75+
return ipAddress;
76+
}
77+
78+
/**
79+
* Optional. IP Address of the application.
80+
* @param ipAddress ipAddress or {@code null} for none
81+
*/
82+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition setIpAddress(java.lang.String ipAddress) {
83+
this.ipAddress = ipAddress;
84+
return this;
85+
}
86+
87+
/**
88+
* Optional. Ports of the application.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.util.List<java.lang.Integer> getPorts() {
92+
return ports;
93+
}
94+
95+
/**
96+
* Optional. Ports of the application.
97+
* @param ports ports or {@code null} for none
98+
*/
99+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition setPorts(java.util.List<java.lang.Integer> ports) {
100+
this.ports = ports;
101+
return this;
102+
}
103+
104+
@Override
105+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition set(String fieldName, Object value) {
106+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition clone() {
111+
return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilterMatchCondition) super.clone();
112+
}
113+
114+
}

0 commit comments

Comments
 (0)