You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: clients/google-api-services-securitycenter/v1/2.0.0/com/google/api/services/securitycenter/v1/model/Finding.java
+72
Original file line number
Diff line number
Diff line change
@@ -307,6 +307,20 @@ public final class Finding extends com.google.api.client.json.GenericJson {
307
307
@com.google.api.client.util.Key
308
308
privateIndicatorindicator;
309
309
310
+
/**
311
+
* IP rules associated with the finding.
312
+
* The value may be {@code null}.
313
+
*/
314
+
@com.google.api.client.util.Key
315
+
privateIpRulesipRules;
316
+
317
+
/**
318
+
* Job associated with the finding.
319
+
* The value may be {@code null}.
320
+
*/
321
+
@com.google.api.client.util.Key
322
+
privateJobjob;
323
+
310
324
/**
311
325
* Signature of the kernel rootkit.
312
326
* The value may be {@code null}.
@@ -392,6 +406,13 @@ public final class Finding extends com.google.api.client.json.GenericJson {
392
406
@com.google.api.client.util.Key
393
407
privatejava.lang.Stringname;
394
408
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
+
privatejava.util.List<Network> networks;
415
+
395
416
/**
396
417
* Steps to address the finding.
397
418
* The value may be {@code null}.
@@ -1044,6 +1065,40 @@ public Finding setIndicator(Indicator indicator) {
1044
1065
returnthis;
1045
1066
}
1046
1067
1068
+
/**
1069
+
* IP rules associated with the finding.
1070
+
* @return value or {@code null} for none
1071
+
*/
1072
+
publicIpRulesgetIpRules() {
1073
+
returnipRules;
1074
+
}
1075
+
1076
+
/**
1077
+
* IP rules associated with the finding.
1078
+
* @param ipRules ipRules or {@code null} for none
1079
+
*/
1080
+
publicFindingsetIpRules(IpRulesipRules) {
1081
+
this.ipRules = ipRules;
1082
+
returnthis;
1083
+
}
1084
+
1085
+
/**
1086
+
* Job associated with the finding.
1087
+
* @return value or {@code null} for none
1088
+
*/
1089
+
publicJobgetJob() {
1090
+
returnjob;
1091
+
}
1092
+
1093
+
/**
1094
+
* Job associated with the finding.
1095
+
* @param job job or {@code null} for none
1096
+
*/
1097
+
publicFindingsetJob(Jobjob) {
1098
+
this.job = job;
1099
+
returnthis;
1100
+
}
1101
+
1047
1102
/**
1048
1103
* Signature of the kernel rootkit.
1049
1104
* @return value or {@code null} for none
@@ -1247,6 +1302,23 @@ public Finding setName(java.lang.String name) {
1247
1302
returnthis;
1248
1303
}
1249
1304
1305
+
/**
1306
+
* Represents the VPC networks that the resource is attached to.
1307
+
* @return value or {@code null} for none
1308
+
*/
1309
+
publicjava.util.List<Network> getNetworks() {
1310
+
returnnetworks;
1311
+
}
1312
+
1313
+
/**
1314
+
* Represents the VPC networks that the resource is attached to.
1315
+
* @param networks networks or {@code null} for none
0 commit comments