@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20250509 → 0.0.20250616

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.
Files changed (2) hide show
  1. package/index.d.ts +26 -2
  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: 20250509
12
+ // Revision: 20250616
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -552,7 +552,7 @@ declare namespace gapi.client {
552
552
  revision?: string;
553
553
  }
554
554
  interface ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository {
555
- /** The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*‍/locations/*‍/connections/*‍/gitRepositoryLink/*` */
555
+ /** The Developer Connect Git repository link formatted as `projects/*‍/locations/*‍/connections/*‍/gitRepositoryLink/*` */
556
556
  developerConnect?: string;
557
557
  /** Location of the Git repository. */
558
558
  url?: string;
@@ -852,6 +852,8 @@ declare namespace gapi.client {
852
852
  continuousAnalysis?: string;
853
853
  /** The CPE of the resource being scanned. */
854
854
  cpe?: string;
855
+ /** Files that make up the resource described by the occurrence. */
856
+ files?: File[];
855
857
  /** The last time this resource was scanned. */
856
858
  lastScanTime?: string;
857
859
  /** The status of an SBOM generation. */
@@ -912,6 +914,10 @@ declare namespace gapi.client {
912
914
  /** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
913
915
  title?: string;
914
916
  }
917
+ interface File {
918
+ digest?: {[P in string]: string};
919
+ name?: string;
920
+ }
915
921
  interface FileHashes {
916
922
  /** Required. Collection of file hashes. */
917
923
  fileHash?: Hash[];
@@ -1108,12 +1114,16 @@ declare namespace gapi.client {
1108
1114
  nextPageToken?: string;
1109
1115
  /** The notes requested. */
1110
1116
  notes?: Note[];
1117
+ /** Unordered list. Unreachable regions. Populated for requests from the global region when `return_partial_success` is set. Format: projects//locations/ */
1118
+ unreachable?: string[];
1111
1119
  }
1112
1120
  interface ListOccurrencesResponse {
1113
1121
  /** The next pagination token in the list response. It should be used as `page_token` for the following request. An empty value means no more results. */
1114
1122
  nextPageToken?: string;
1115
1123
  /** The occurrences requested. */
1116
1124
  occurrences?: Occurrence[];
1125
+ /** Unordered list. Unreachable regions. Populated for requests from the global region when `return_partial_success` is set. Format: projects//locations/ */
1126
+ unreachable?: string[];
1117
1127
  }
1118
1128
  interface Location {
1119
1129
  /** Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) */
@@ -1691,6 +1701,8 @@ declare namespace gapi.client {
1691
1701
  interface VulnerabilityOccurrencesSummary {
1692
1702
  /** A listing by resource of the number of fixable and total vulnerabilities. */
1693
1703
  counts?: FixableTotalByDigest[];
1704
+ /** Unordered list. Unreachable regions. Populated for requests from the global region when `return_partial_success` is set. Format: projects//locations/ */
1705
+ unreachable?: string[];
1694
1706
  }
1695
1707
  interface WindowsDetail {
1696
1708
  /** Required. The [CPE URI](https://cpe.mitre.org/specification/) this vulnerability affects. */
@@ -1986,6 +1998,8 @@ declare namespace gapi.client {
1986
1998
  prettyPrint?: boolean;
1987
1999
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1988
2000
  quotaUser?: string;
2001
+ /** If set, the request will return all reachable Notes and report all unreachable regions in the `unreachable` field in the response. Only applicable for requests in the global region. */
2002
+ returnPartialSuccess?: boolean;
1989
2003
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1990
2004
  upload_protocol?: string;
1991
2005
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -2367,6 +2381,8 @@ declare namespace gapi.client {
2367
2381
  prettyPrint?: boolean;
2368
2382
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2369
2383
  quotaUser?: string;
2384
+ /** If set, the request will return all reachable occurrence summaries and report all unreachable regions in the `unreachable` field in the response. Only applicable for requests in the global region. */
2385
+ returnPartialSuccess?: boolean;
2370
2386
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2371
2387
  upload_protocol?: string;
2372
2388
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -2400,6 +2416,8 @@ declare namespace gapi.client {
2400
2416
  prettyPrint?: boolean;
2401
2417
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2402
2418
  quotaUser?: string;
2419
+ /** If set, the request will return all reachable Occurrences and report all unreachable regions in the `unreachable` field in the response. Only applicable for requests in the global region. */
2420
+ returnPartialSuccess?: boolean;
2403
2421
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2404
2422
  upload_protocol?: string;
2405
2423
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -2861,6 +2879,8 @@ declare namespace gapi.client {
2861
2879
  prettyPrint?: boolean;
2862
2880
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2863
2881
  quotaUser?: string;
2882
+ /** If set, the request will return all reachable Notes and report all unreachable regions in the `unreachable` field in the response. Only applicable for requests in the global region. */
2883
+ returnPartialSuccess?: boolean;
2864
2884
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2865
2885
  upload_protocol?: string;
2866
2886
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -3242,6 +3262,8 @@ declare namespace gapi.client {
3242
3262
  prettyPrint?: boolean;
3243
3263
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
3244
3264
  quotaUser?: string;
3265
+ /** If set, the request will return all reachable occurrence summaries and report all unreachable regions in the `unreachable` field in the response. Only applicable for requests in the global region. */
3266
+ returnPartialSuccess?: boolean;
3245
3267
  /** Upload protocol for media (e.g. "raw", "multipart"). */
3246
3268
  upload_protocol?: string;
3247
3269
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -3275,6 +3297,8 @@ declare namespace gapi.client {
3275
3297
  prettyPrint?: boolean;
3276
3298
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
3277
3299
  quotaUser?: string;
3300
+ /** If set, the request will return all reachable Occurrences and report all unreachable regions in the `unreachable` field in the response. Only applicable for requests in the global region. */
3301
+ returnPartialSuccess?: boolean;
3278
3302
  /** Upload protocol for media (e.g. "raw", "multipart"). */
3279
3303
  upload_protocol?: string;
3280
3304
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.containeranalysis-v1",
3
- "version": "0.0.20250509",
3
+ "version": "0.0.20250616",
4
4
  "description": "TypeScript typings for Container Analysis API v1",
5
5
  "repository": {
6
6
  "type": "git",