@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20250509 → 0.0.20250527
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: 20250527
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -471,6 +471,8 @@ declare namespace gapi.client {
|
|
|
471
471
|
diskPath?: DiskPath;
|
|
472
472
|
/** The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. */
|
|
473
473
|
hashedSize?: string;
|
|
474
|
+
/** Operation(s) performed on a file. */
|
|
475
|
+
operations?: FileOperation[];
|
|
474
476
|
/** True when the hash covers only a prefix of the file. */
|
|
475
477
|
partiallyHashed?: boolean;
|
|
476
478
|
/** Absolute path of the file as a JSON encoded string. */
|
|
@@ -480,6 +482,10 @@ declare namespace gapi.client {
|
|
|
480
482
|
/** Size of the file in bytes. */
|
|
481
483
|
size?: string;
|
|
482
484
|
}
|
|
485
|
+
interface FileOperation {
|
|
486
|
+
/** The type of the operation */
|
|
487
|
+
type?: string;
|
|
488
|
+
}
|
|
483
489
|
interface Finding {
|
|
484
490
|
/** Access details associated with the finding, such as more information on the caller, which method was accessed, and from where. */
|
|
485
491
|
access?: Access;
|
|
@@ -1359,6 +1365,8 @@ declare namespace gapi.client {
|
|
|
1359
1365
|
diskPath?: GoogleCloudSecuritycenterV2DiskPath;
|
|
1360
1366
|
/** The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. */
|
|
1361
1367
|
hashedSize?: string;
|
|
1368
|
+
/** Operation(s) performed on a file. */
|
|
1369
|
+
operations?: GoogleCloudSecuritycenterV2FileOperation[];
|
|
1362
1370
|
/** True when the hash covers only a prefix of the file. */
|
|
1363
1371
|
partiallyHashed?: boolean;
|
|
1364
1372
|
/** Absolute path of the file as a JSON encoded string. */
|
|
@@ -1368,6 +1376,10 @@ declare namespace gapi.client {
|
|
|
1368
1376
|
/** Size of the file in bytes. */
|
|
1369
1377
|
size?: string;
|
|
1370
1378
|
}
|
|
1379
|
+
interface GoogleCloudSecuritycenterV2FileOperation {
|
|
1380
|
+
/** The type of the operation */
|
|
1381
|
+
type?: string;
|
|
1382
|
+
}
|
|
1371
1383
|
interface GoogleCloudSecuritycenterV2Finding {
|
|
1372
1384
|
/** Access details associated with the finding, such as more information on the caller, which method was accessed, and from where. */
|
|
1373
1385
|
access?: GoogleCloudSecuritycenterV2Access;
|