@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20250315 → 0.0.20250326
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +13 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://securitycenter.googleapis.com/$discovery/rest?version=v1beta2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250326
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -72,6 +72,10 @@ declare namespace gapi.client {
|
|
|
72
72
|
/** A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation. */
|
|
73
73
|
confidence?: number;
|
|
74
74
|
}
|
|
75
|
+
interface AffectedResources {
|
|
76
|
+
/** The count of resources affected by the finding. */
|
|
77
|
+
count?: string;
|
|
78
|
+
}
|
|
75
79
|
interface Allowed {
|
|
76
80
|
/** Optional. Optional list of allowed IP rules. */
|
|
77
81
|
ipRules?: IpRule[];
|
|
@@ -497,6 +501,8 @@ declare namespace gapi.client {
|
|
|
497
501
|
interface Finding {
|
|
498
502
|
/** Access details associated with the finding, such as more information on the caller, which method was accessed, and from where. */
|
|
499
503
|
access?: Access;
|
|
504
|
+
/** AffectedResources associated with the finding. */
|
|
505
|
+
affectedResources?: AffectedResources;
|
|
500
506
|
/** Represents an application associated with the finding. */
|
|
501
507
|
application?: Application;
|
|
502
508
|
/** The results of an attack path simulation relevant to this finding. */
|
|
@@ -965,6 +971,10 @@ declare namespace gapi.client {
|
|
|
965
971
|
/** A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation. */
|
|
966
972
|
confidence?: number;
|
|
967
973
|
}
|
|
974
|
+
interface GoogleCloudSecuritycenterV2AffectedResources {
|
|
975
|
+
/** The count of resources affected by the finding. */
|
|
976
|
+
count?: string;
|
|
977
|
+
}
|
|
968
978
|
interface GoogleCloudSecuritycenterV2Allowed {
|
|
969
979
|
/** Optional. Optional list of allowed IP rules. */
|
|
970
980
|
ipRules?: GoogleCloudSecuritycenterV2IpRule[];
|
|
@@ -1379,6 +1389,8 @@ declare namespace gapi.client {
|
|
|
1379
1389
|
interface GoogleCloudSecuritycenterV2Finding {
|
|
1380
1390
|
/** Access details associated with the finding, such as more information on the caller, which method was accessed, and from where. */
|
|
1381
1391
|
access?: GoogleCloudSecuritycenterV2Access;
|
|
1392
|
+
/** AffectedResources associated with the finding. */
|
|
1393
|
+
affectedResources?: GoogleCloudSecuritycenterV2AffectedResources;
|
|
1382
1394
|
/** Represents an application associated with the finding. */
|
|
1383
1395
|
application?: GoogleCloudSecuritycenterV2Application;
|
|
1384
1396
|
/** The results of an attack path simulation relevant to this finding. */
|