@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20240809 → 0.0.20240823
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 +69 -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: 20240823
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -139,6 +139,8 @@ declare namespace gapi.client {
|
|
|
139
139
|
resourceGroup?: AzureResourceGroup;
|
|
140
140
|
/** The Azure subscription associated with the resource. */
|
|
141
141
|
subscription?: AzureSubscription;
|
|
142
|
+
/** The Azure Entra tenant associated with the resource. */
|
|
143
|
+
tenant?: AzureTenant;
|
|
142
144
|
}
|
|
143
145
|
interface AzureResourceGroup {
|
|
144
146
|
/** The name of the Azure resource group. This is not a UUID. */
|
|
@@ -150,6 +152,10 @@ declare namespace gapi.client {
|
|
|
150
152
|
/** The UUID of the Azure subscription, for example, `291bba3f-e0a5-47bc-a099-3bdcb2a50a05`. */
|
|
151
153
|
id?: string;
|
|
152
154
|
}
|
|
155
|
+
interface AzureTenant {
|
|
156
|
+
/** The ID of the Microsoft Entra tenant, for example, "a11aaa11-aa11-1aa1-11aa-1aaa11a". */
|
|
157
|
+
id?: string;
|
|
158
|
+
}
|
|
153
159
|
interface BackupDisasterRecovery {
|
|
154
160
|
/** The name of the Backup and DR appliance that captures, moves, and manages the lifecycle of backup data. For example, `backup-server-57137`. */
|
|
155
161
|
appliance?: string;
|
|
@@ -295,6 +301,8 @@ declare namespace gapi.client {
|
|
|
295
301
|
exploitationActivity?: string;
|
|
296
302
|
/** Date the first publicly available exploit or PoC was released. */
|
|
297
303
|
exploitReleaseDate?: string;
|
|
304
|
+
/** Date of the earliest known exploitation. */
|
|
305
|
+
firstExploitationDate?: string;
|
|
298
306
|
/** The unique identifier for the vulnerability. e.g. CVE-2021-34527 */
|
|
299
307
|
id?: string;
|
|
300
308
|
/** The potential impact of the vulnerability if it was to be exploited. */
|
|
@@ -328,6 +336,16 @@ declare namespace gapi.client {
|
|
|
328
336
|
/** This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. */
|
|
329
337
|
userInteraction?: string;
|
|
330
338
|
}
|
|
339
|
+
interface DataAccessEvent {
|
|
340
|
+
/** Unique identifier for data access event. */
|
|
341
|
+
eventId?: string;
|
|
342
|
+
/** Timestamp of data access event. */
|
|
343
|
+
eventTime?: string;
|
|
344
|
+
/** The operation performed by the principal to access the data. */
|
|
345
|
+
operation?: string;
|
|
346
|
+
/** The email address of the principal that accessed the data. The principal could be a user account, service account, Google group, or other. */
|
|
347
|
+
principalEmail?: string;
|
|
348
|
+
}
|
|
331
349
|
interface Database {
|
|
332
350
|
/** The human-readable name of the database that the user connected to. */
|
|
333
351
|
displayName?: string;
|
|
@@ -342,6 +360,18 @@ declare namespace gapi.client {
|
|
|
342
360
|
/** The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion). */
|
|
343
361
|
version?: string;
|
|
344
362
|
}
|
|
363
|
+
interface DataFlowEvent {
|
|
364
|
+
/** Unique identifier for data flow event. */
|
|
365
|
+
eventId?: string;
|
|
366
|
+
/** Timestamp of data flow event. */
|
|
367
|
+
eventTime?: string;
|
|
368
|
+
/** The operation performed by the principal for the data flow event. */
|
|
369
|
+
operation?: string;
|
|
370
|
+
/** The email address of the principal that initiated the data flow event. The principal could be a user account, service account, Google group, or other. */
|
|
371
|
+
principalEmail?: string;
|
|
372
|
+
/** Non-compliant location of the principal or the data destination. */
|
|
373
|
+
violatedLocation?: string;
|
|
374
|
+
}
|
|
345
375
|
interface Details {
|
|
346
376
|
/** The time the subscription has or will end. */
|
|
347
377
|
endTime?: string;
|
|
@@ -453,8 +483,12 @@ declare namespace gapi.client {
|
|
|
453
483
|
containers?: Container[];
|
|
454
484
|
/** The time at which the finding was created in Security Command Center. */
|
|
455
485
|
createTime?: string;
|
|
486
|
+
/** Data access events associated with the finding. */
|
|
487
|
+
dataAccessEvents?: DataAccessEvent[];
|
|
456
488
|
/** Database associated with the finding. */
|
|
457
489
|
database?: Database;
|
|
490
|
+
/** Data flow events associated with the finding. */
|
|
491
|
+
dataFlowEvents?: DataFlowEvent[];
|
|
458
492
|
/** Contains more details about the finding. */
|
|
459
493
|
description?: string;
|
|
460
494
|
/** The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp. */
|
|
@@ -942,6 +976,8 @@ declare namespace gapi.client {
|
|
|
942
976
|
resourceGroup?: GoogleCloudSecuritycenterV2AzureResourceGroup;
|
|
943
977
|
/** The Azure subscription associated with the resource. */
|
|
944
978
|
subscription?: GoogleCloudSecuritycenterV2AzureSubscription;
|
|
979
|
+
/** The Azure Entra tenant associated with the resource. */
|
|
980
|
+
tenant?: GoogleCloudSecuritycenterV2AzureTenant;
|
|
945
981
|
}
|
|
946
982
|
interface GoogleCloudSecuritycenterV2AzureResourceGroup {
|
|
947
983
|
/** The name of the Azure resource group. This is not a UUID. */
|
|
@@ -953,6 +989,10 @@ declare namespace gapi.client {
|
|
|
953
989
|
/** The UUID of the Azure subscription, for example, `291bba3f-e0a5-47bc-a099-3bdcb2a50a05`. */
|
|
954
990
|
id?: string;
|
|
955
991
|
}
|
|
992
|
+
interface GoogleCloudSecuritycenterV2AzureTenant {
|
|
993
|
+
/** The ID of the Microsoft Entra tenant, for example, "a11aaa11-aa11-1aa1-11aa-1aaa11a". */
|
|
994
|
+
id?: string;
|
|
995
|
+
}
|
|
956
996
|
interface GoogleCloudSecuritycenterV2BackupDisasterRecovery {
|
|
957
997
|
/** The name of the Backup and DR appliance that captures, moves, and manages the lifecycle of backup data. For example, `backup-server-57137`. */
|
|
958
998
|
appliance?: string;
|
|
@@ -1091,6 +1131,8 @@ declare namespace gapi.client {
|
|
|
1091
1131
|
exploitationActivity?: string;
|
|
1092
1132
|
/** Date the first publicly available exploit or PoC was released. */
|
|
1093
1133
|
exploitReleaseDate?: string;
|
|
1134
|
+
/** Date of the earliest known exploitation. */
|
|
1135
|
+
firstExploitationDate?: string;
|
|
1094
1136
|
/** The unique identifier for the vulnerability. e.g. CVE-2021-34527 */
|
|
1095
1137
|
id?: string;
|
|
1096
1138
|
/** The potential impact of the vulnerability if it was to be exploited. */
|
|
@@ -1124,6 +1166,16 @@ declare namespace gapi.client {
|
|
|
1124
1166
|
/** This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. */
|
|
1125
1167
|
userInteraction?: string;
|
|
1126
1168
|
}
|
|
1169
|
+
interface GoogleCloudSecuritycenterV2DataAccessEvent {
|
|
1170
|
+
/** Unique identifier for data access event. */
|
|
1171
|
+
eventId?: string;
|
|
1172
|
+
/** Timestamp of data access event. */
|
|
1173
|
+
eventTime?: string;
|
|
1174
|
+
/** The operation performed by the principal to access the data. */
|
|
1175
|
+
operation?: string;
|
|
1176
|
+
/** The email address of the principal that accessed the data. The principal could be a user account, service account, Google group, or other. */
|
|
1177
|
+
principalEmail?: string;
|
|
1178
|
+
}
|
|
1127
1179
|
interface GoogleCloudSecuritycenterV2Database {
|
|
1128
1180
|
/** The human-readable name of the database that the user connected to. */
|
|
1129
1181
|
displayName?: string;
|
|
@@ -1138,6 +1190,18 @@ declare namespace gapi.client {
|
|
|
1138
1190
|
/** The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion). */
|
|
1139
1191
|
version?: string;
|
|
1140
1192
|
}
|
|
1193
|
+
interface GoogleCloudSecuritycenterV2DataFlowEvent {
|
|
1194
|
+
/** Unique identifier for data flow event. */
|
|
1195
|
+
eventId?: string;
|
|
1196
|
+
/** Timestamp of data flow event. */
|
|
1197
|
+
eventTime?: string;
|
|
1198
|
+
/** The operation performed by the principal for the data flow event. */
|
|
1199
|
+
operation?: string;
|
|
1200
|
+
/** The email address of the principal that initiated the data flow event. The principal could be a user account, service account, Google group, or other. */
|
|
1201
|
+
principalEmail?: string;
|
|
1202
|
+
/** Non-compliant location of the principal or the data destination. */
|
|
1203
|
+
violatedLocation?: string;
|
|
1204
|
+
}
|
|
1141
1205
|
interface GoogleCloudSecuritycenterV2Detection {
|
|
1142
1206
|
/** The name of the binary associated with the memory hash signature detection. */
|
|
1143
1207
|
binary?: string;
|
|
@@ -1245,8 +1309,12 @@ declare namespace gapi.client {
|
|
|
1245
1309
|
containers?: GoogleCloudSecuritycenterV2Container[];
|
|
1246
1310
|
/** Output only. The time at which the finding was created in Security Command Center. */
|
|
1247
1311
|
createTime?: string;
|
|
1312
|
+
/** Data access events associated with the finding. */
|
|
1313
|
+
dataAccessEvents?: GoogleCloudSecuritycenterV2DataAccessEvent[];
|
|
1248
1314
|
/** Database associated with the finding. */
|
|
1249
1315
|
database?: GoogleCloudSecuritycenterV2Database;
|
|
1316
|
+
/** Data flow events associated with the finding. */
|
|
1317
|
+
dataFlowEvents?: GoogleCloudSecuritycenterV2DataFlowEvent[];
|
|
1250
1318
|
/** Contains more details about the finding. */
|
|
1251
1319
|
description?: string;
|
|
1252
1320
|
/** The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp. */
|