Skip to content

Commit 14b1c9e

Browse files
1 parent 8b4063e commit 14b1c9e

19 files changed

+1632
-6
lines changed

clients/google-api-services-securitycenter/v1/2.0.0/README.md

+2-2
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-securitycenter</artifactId>
25-
<version>v1-rev20250207-2.0.0</version>
25+
<version>v1-rev20250218-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-securitycenter:v1-rev20250207-2.0.0'
38+
implementation 'com.google.apis:google-api-services-securitycenter:v1-rev20250218-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.securitycenter.v1.model;
18+
19+
/**
20+
* Allowed IP rule.
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 Security Command Center API. For a detailed
24+
* 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 Allowed extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Optional list of allowed IP rules.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<IpRule> ipRules;
39+
40+
/**
41+
* Optional. Optional list of allowed IP rules.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.util.List<IpRule> getIpRules() {
45+
return ipRules;
46+
}
47+
48+
/**
49+
* Optional. Optional list of allowed IP rules.
50+
* @param ipRules ipRules or {@code null} for none
51+
*/
52+
public Allowed setIpRules(java.util.List<IpRule> ipRules) {
53+
this.ipRules = ipRules;
54+
return this;
55+
}
56+
57+
@Override
58+
public Allowed set(String fieldName, Object value) {
59+
return (Allowed) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public Allowed clone() {
64+
return (Allowed) super.clone();
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.securitycenter.v1.model;
18+
19+
/**
20+
* Denied IP rule.
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 Security Command Center API. For a detailed
24+
* 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 Denied extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Optional list of denied IP rules.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<IpRule> ipRules;
39+
40+
/**
41+
* Optional. Optional list of denied IP rules.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.util.List<IpRule> getIpRules() {
45+
return ipRules;
46+
}
47+
48+
/**
49+
* Optional. Optional list of denied IP rules.
50+
* @param ipRules ipRules or {@code null} for none
51+
*/
52+
public Denied setIpRules(java.util.List<IpRule> ipRules) {
53+
this.ipRules = ipRules;
54+
return this;
55+
}
56+
57+
@Override
58+
public Denied set(String fieldName, Object value) {
59+
return (Denied) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public Denied clone() {
64+
return (Denied) super.clone();
65+
}
66+
67+
}

clients/google-api-services-securitycenter/v1/2.0.0/com/google/api/services/securitycenter/v1/model/Finding.java

+72
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,20 @@ public final class Finding extends com.google.api.client.json.GenericJson {
307307
@com.google.api.client.util.Key
308308
private Indicator indicator;
309309

310+
/**
311+
* IP rules associated with the finding.
312+
* The value may be {@code null}.
313+
*/
314+
@com.google.api.client.util.Key
315+
private IpRules ipRules;
316+
317+
/**
318+
* Job associated with the finding.
319+
* The value may be {@code null}.
320+
*/
321+
@com.google.api.client.util.Key
322+
private Job job;
323+
310324
/**
311325
* Signature of the kernel rootkit.
312326
* The value may be {@code null}.
@@ -392,6 +406,13 @@ public final class Finding extends com.google.api.client.json.GenericJson {
392406
@com.google.api.client.util.Key
393407
private java.lang.String name;
394408

409+
/**
410+
* Represents the VPC networks that the resource is attached to.
411+
* The value may be {@code null}.
412+
*/
413+
@com.google.api.client.util.Key
414+
private java.util.List<Network> networks;
415+
395416
/**
396417
* Steps to address the finding.
397418
* The value may be {@code null}.
@@ -1044,6 +1065,40 @@ public Finding setIndicator(Indicator indicator) {
10441065
return this;
10451066
}
10461067

1068+
/**
1069+
* IP rules associated with the finding.
1070+
* @return value or {@code null} for none
1071+
*/
1072+
public IpRules getIpRules() {
1073+
return ipRules;
1074+
}
1075+
1076+
/**
1077+
* IP rules associated with the finding.
1078+
* @param ipRules ipRules or {@code null} for none
1079+
*/
1080+
public Finding setIpRules(IpRules ipRules) {
1081+
this.ipRules = ipRules;
1082+
return this;
1083+
}
1084+
1085+
/**
1086+
* Job associated with the finding.
1087+
* @return value or {@code null} for none
1088+
*/
1089+
public Job getJob() {
1090+
return job;
1091+
}
1092+
1093+
/**
1094+
* Job associated with the finding.
1095+
* @param job job or {@code null} for none
1096+
*/
1097+
public Finding setJob(Job job) {
1098+
this.job = job;
1099+
return this;
1100+
}
1101+
10471102
/**
10481103
* Signature of the kernel rootkit.
10491104
* @return value or {@code null} for none
@@ -1247,6 +1302,23 @@ public Finding setName(java.lang.String name) {
12471302
return this;
12481303
}
12491304

1305+
/**
1306+
* Represents the VPC networks that the resource is attached to.
1307+
* @return value or {@code null} for none
1308+
*/
1309+
public java.util.List<Network> getNetworks() {
1310+
return networks;
1311+
}
1312+
1313+
/**
1314+
* Represents the VPC networks that the resource is attached to.
1315+
* @param networks networks or {@code null} for none
1316+
*/
1317+
public Finding setNetworks(java.util.List<Network> networks) {
1318+
this.networks = networks;
1319+
return this;
1320+
}
1321+
12501322
/**
12511323
* Steps to address the finding.
12521324
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.securitycenter.v1.model;
18+
19+
/**
20+
* Allowed IP rule.
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 Security Command Center API. For a detailed
24+
* 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 GoogleCloudSecuritycenterV2Allowed extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Optional list of allowed IP rules.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<GoogleCloudSecuritycenterV2IpRule> ipRules;
39+
40+
/**
41+
* Optional. Optional list of allowed IP rules.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.util.List<GoogleCloudSecuritycenterV2IpRule> getIpRules() {
45+
return ipRules;
46+
}
47+
48+
/**
49+
* Optional. Optional list of allowed IP rules.
50+
* @param ipRules ipRules or {@code null} for none
51+
*/
52+
public GoogleCloudSecuritycenterV2Allowed setIpRules(java.util.List<GoogleCloudSecuritycenterV2IpRule> ipRules) {
53+
this.ipRules = ipRules;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleCloudSecuritycenterV2Allowed set(String fieldName, Object value) {
59+
return (GoogleCloudSecuritycenterV2Allowed) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleCloudSecuritycenterV2Allowed clone() {
64+
return (GoogleCloudSecuritycenterV2Allowed) super.clone();
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.securitycenter.v1.model;
18+
19+
/**
20+
* Denied IP rule.
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 Security Command Center API. For a detailed
24+
* 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 GoogleCloudSecuritycenterV2Denied extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Optional list of denied IP rules.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<GoogleCloudSecuritycenterV2IpRule> ipRules;
39+
40+
/**
41+
* Optional. Optional list of denied IP rules.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.util.List<GoogleCloudSecuritycenterV2IpRule> getIpRules() {
45+
return ipRules;
46+
}
47+
48+
/**
49+
* Optional. Optional list of denied IP rules.
50+
* @param ipRules ipRules or {@code null} for none
51+
*/
52+
public GoogleCloudSecuritycenterV2Denied setIpRules(java.util.List<GoogleCloudSecuritycenterV2IpRule> ipRules) {
53+
this.ipRules = ipRules;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleCloudSecuritycenterV2Denied set(String fieldName, Object value) {
59+
return (GoogleCloudSecuritycenterV2Denied) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleCloudSecuritycenterV2Denied clone() {
64+
return (GoogleCloudSecuritycenterV2Denied) super.clone();
65+
}
66+
67+
}

0 commit comments

Comments
 (0)