@maxim_mazurok/gapi.client.containeranalysis-v1 0.2.20260724 → 0.2.20260812
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 +40 -2
- 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://containeranalysis.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260812
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -32,8 +32,10 @@ declare namespace gapi.client {
|
|
|
32
32
|
interface AISkillAnalysisOccurrence {
|
|
33
33
|
/** Findings produced by the analysis. */
|
|
34
34
|
findings?: Finding[];
|
|
35
|
-
/** Maximum severity found among findings. */
|
|
35
|
+
/** Maximum severity found among findings. Per scanner verdict details. */
|
|
36
36
|
maxSeverity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
37
|
+
/** Per scanner verdict. */
|
|
38
|
+
perScannerVerdict?: PerScannerVerdict;
|
|
37
39
|
/** Name of the skill that produced this analysis. */
|
|
38
40
|
skillName?: string;
|
|
39
41
|
}
|
|
@@ -672,6 +674,8 @@ declare namespace gapi.client {
|
|
|
672
674
|
depth?: string;
|
|
673
675
|
/** Required. Where should the files be placed on the worker. */
|
|
674
676
|
destPath?: string;
|
|
677
|
+
/** Optional. True if remote tags should be fetched too (default false). Note: when depth is 1 (default), git fetch only retrieves tags pointing to commits within the shallow boundary. Set depth to -1 to fetch all historical tags. */
|
|
678
|
+
fetchTags?: boolean;
|
|
675
679
|
/** Optional. True if submodules should be fetched too (default false). */
|
|
676
680
|
recurseSubmodules?: boolean;
|
|
677
681
|
/** Required. The kind of repo (url or dev connect). */
|
|
@@ -1494,6 +1498,24 @@ declare namespace gapi.client {
|
|
|
1494
1498
|
/** Deprecated. The version installed at this location. */
|
|
1495
1499
|
version?: Version;
|
|
1496
1500
|
}
|
|
1501
|
+
interface MaliciousContentLLMResult {
|
|
1502
|
+
/** Tracks max severity found. */
|
|
1503
|
+
maxSeverity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1504
|
+
/** Status of the scan. */
|
|
1505
|
+
scanStatus?: 'SCAN_STATUS_UNSPECIFIED' | 'PERFORMED' | 'NOT_PERFORMED';
|
|
1506
|
+
}
|
|
1507
|
+
interface MaliciousContentStaticResult {
|
|
1508
|
+
/** Tracks max severity found. */
|
|
1509
|
+
maxSeverity?: 'SEVERITY_UNSPECIFIED' | 'CRITICAL' | 'HIGH';
|
|
1510
|
+
/** Status of the scan. */
|
|
1511
|
+
scanStatus?: 'SCAN_STATUS_UNSPECIFIED' | 'PERFORMED' | 'NOT_PERFORMED';
|
|
1512
|
+
}
|
|
1513
|
+
interface MalwareScanResult {
|
|
1514
|
+
/** Status of the scan. */
|
|
1515
|
+
scanStatus?: 'SCAN_STATUS_UNSPECIFIED' | 'PERFORMED' | 'NOT_PERFORMED';
|
|
1516
|
+
/** Verdict of the scan. */
|
|
1517
|
+
verdict?: 'VERDICT_UNSPECIFIED' | 'PASSED' | 'FAILED';
|
|
1518
|
+
}
|
|
1497
1519
|
interface Material {
|
|
1498
1520
|
digest?: {[P in string]: string};
|
|
1499
1521
|
uri?: string;
|
|
@@ -1710,6 +1732,16 @@ declare namespace gapi.client {
|
|
|
1710
1732
|
/** Output only. The version of the package. */
|
|
1711
1733
|
version?: Version;
|
|
1712
1734
|
}
|
|
1735
|
+
interface PerScannerVerdict {
|
|
1736
|
+
/** Malicious Content LLM scan result. */
|
|
1737
|
+
maliciousContentLlmResult?: MaliciousContentLLMResult;
|
|
1738
|
+
/** Malicious Content Static scan result. */
|
|
1739
|
+
maliciousContentStaticResult?: MaliciousContentStaticResult;
|
|
1740
|
+
/** Malware scan result. */
|
|
1741
|
+
malwareScan?: MalwareScanResult;
|
|
1742
|
+
/** Workspace Policy scan result. */
|
|
1743
|
+
workspacePolicy?: WorkspacePolicyResult;
|
|
1744
|
+
}
|
|
1713
1745
|
interface Policy {
|
|
1714
1746
|
/** Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`. */
|
|
1715
1747
|
bindings?: Binding[];
|
|
@@ -2207,6 +2239,12 @@ declare namespace gapi.client {
|
|
|
2207
2239
|
/** The localized title of the update. */
|
|
2208
2240
|
title?: string;
|
|
2209
2241
|
}
|
|
2242
|
+
interface WorkspacePolicyResult {
|
|
2243
|
+
/** Status of the scan. */
|
|
2244
|
+
scanStatus?: 'SCAN_STATUS_UNSPECIFIED' | 'PERFORMED' | 'NOT_PERFORMED';
|
|
2245
|
+
/** Verdict of the scan. */
|
|
2246
|
+
verdict?: 'VERDICT_UNSPECIFIED' | 'PASSED' | 'FAILED';
|
|
2247
|
+
}
|
|
2210
2248
|
interface OccurrencesResource {
|
|
2211
2249
|
/** Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note. */
|
|
2212
2250
|
list(request?: {
|