@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20241206 → 0.0.20250116
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 -5
- 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: 20250116
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -81,10 +81,14 @@ declare namespace gapi.client {
|
|
|
81
81
|
interface Attack {
|
|
82
82
|
/** Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'. */
|
|
83
83
|
classification?: string;
|
|
84
|
-
/** Total BPS (bytes per second) volume of attack. */
|
|
84
|
+
/** Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead. */
|
|
85
85
|
volumeBps?: number;
|
|
86
|
-
/** Total
|
|
86
|
+
/** Total BPS (bytes per second) volume of attack. */
|
|
87
|
+
volumeBpsLong?: string;
|
|
88
|
+
/** Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead. */
|
|
87
89
|
volumePps?: number;
|
|
90
|
+
/** Total PPS (packets per second) volume of attack. */
|
|
91
|
+
volumePpsLong?: string;
|
|
88
92
|
}
|
|
89
93
|
interface AttackExposure {
|
|
90
94
|
/** The resource name of the attack path simulation result that contains the details regarding this attack exposure score. Example: `organizations/123/simulations/456/attackExposureResults/789` */
|
|
@@ -944,10 +948,14 @@ declare namespace gapi.client {
|
|
|
944
948
|
interface GoogleCloudSecuritycenterV2Attack {
|
|
945
949
|
/** Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'. */
|
|
946
950
|
classification?: string;
|
|
947
|
-
/** Total BPS (bytes per second) volume of attack. */
|
|
951
|
+
/** Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead. */
|
|
948
952
|
volumeBps?: number;
|
|
949
|
-
/** Total
|
|
953
|
+
/** Total BPS (bytes per second) volume of attack. */
|
|
954
|
+
volumeBpsLong?: string;
|
|
955
|
+
/** Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead. */
|
|
950
956
|
volumePps?: number;
|
|
957
|
+
/** Total PPS (packets per second) volume of attack. */
|
|
958
|
+
volumePpsLong?: string;
|
|
951
959
|
}
|
|
952
960
|
interface GoogleCloudSecuritycenterV2AttackExposure {
|
|
953
961
|
/** The resource name of the attack path simulation result that contains the details regarding this attack exposure score. Example: `organizations/123/simulations/456/attackExposureResults/789` */
|