@maxim_mazurok/gapi.client.ondemandscanning-v1beta1 0.0.20250428 → 0.0.20250505
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 +27 -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://ondemandscanning.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250505
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -313,6 +313,8 @@ declare namespace gapi.client {
|
|
|
313
313
|
interface GrafeasV1LayerDetails {
|
|
314
314
|
/** The base images the layer is found within. */
|
|
315
315
|
baseImages?: GrafeasV1BaseImage[];
|
|
316
|
+
/** The layer chain ID (sha256 hash) of the layer in the container image. https://github.com/opencontainers/image-spec/blob/main/config.md#layer-chainid */
|
|
317
|
+
chainId?: string;
|
|
316
318
|
/** The layer build command that was used to build the layer. This may not be found in all layers depending on how the container image is built. */
|
|
317
319
|
command?: string;
|
|
318
320
|
/** The diff ID (typically a sha256 hash) of the layer in the container image. */
|
|
@@ -420,6 +422,8 @@ declare namespace gapi.client {
|
|
|
420
422
|
interface LayerDetails {
|
|
421
423
|
/** The base images the layer is found within. */
|
|
422
424
|
baseImages?: BaseImage[];
|
|
425
|
+
/** The layer chain ID (sha256 hash) of the layer in the container image. https://github.com/opencontainers/image-spec/blob/main/config.md#layer-chainid */
|
|
426
|
+
chainId?: string;
|
|
423
427
|
/** The layer build command that was used to build the layer. This may not be found in all layers depending on how the container image is built. */
|
|
424
428
|
command?: string;
|
|
425
429
|
/** The diff ID (sha256 hash) of the layer in the container image. */
|
|
@@ -516,6 +520,8 @@ declare namespace gapi.client {
|
|
|
516
520
|
resourceUri?: string;
|
|
517
521
|
/** Describes a specific SBOM reference occurrences. */
|
|
518
522
|
sbomReference?: SBOMReferenceOccurrence;
|
|
523
|
+
/** Describes a secret. */
|
|
524
|
+
secret?: SecretOccurrence;
|
|
519
525
|
/** Output only. The time this occurrence was last updated. */
|
|
520
526
|
updateTime?: string;
|
|
521
527
|
/** Describes an available package upgrade on the linked resource. */
|
|
@@ -706,6 +712,26 @@ declare namespace gapi.client {
|
|
|
706
712
|
/** The progress of the SBOM generation. */
|
|
707
713
|
sbomState?: string;
|
|
708
714
|
}
|
|
715
|
+
interface SecretLocation {
|
|
716
|
+
/** The secret is found from a file. */
|
|
717
|
+
fileLocation?: GrafeasV1FileLocation;
|
|
718
|
+
}
|
|
719
|
+
interface SecretOccurrence {
|
|
720
|
+
/** Required. Type of secret. */
|
|
721
|
+
kind?: string;
|
|
722
|
+
/** Optional. Locations where the secret is detected. */
|
|
723
|
+
locations?: SecretLocation[];
|
|
724
|
+
/** Optional. Status of the secret. */
|
|
725
|
+
statuses?: SecretStatus[];
|
|
726
|
+
}
|
|
727
|
+
interface SecretStatus {
|
|
728
|
+
/** Optional. Optional message about the status code. */
|
|
729
|
+
message?: string;
|
|
730
|
+
/** Optional. The status of the secret. */
|
|
731
|
+
status?: string;
|
|
732
|
+
/** Optional. The time the secret status was last updated. */
|
|
733
|
+
updateTime?: string;
|
|
734
|
+
}
|
|
709
735
|
interface Signature {
|
|
710
736
|
/** The identifier for the public key that verifies this signature. * The `public_key_id` is required. * The `public_key_id` SHOULD be an RFC3986 conformant URI. * When possible, the `public_key_id` SHOULD be an immutable reference, such as a cryptographic digest. Examples of valid `public_key_id`s: OpenPGP V4 public key fingerprint: * "openpgp4fpr:74FAF3B861BDA0870C7B6DEF607E48D2A663AEEA" See https://www.iana.org/assignments/uri-schemes/prov/openpgp4fpr for more details on this scheme. RFC6920 digest-named SubjectPublicKeyInfo (digest of the DER serialization): * "ni:///sha-256;cD9o9Cq6LG3jD0iKXqEi_vdjJGecm_iXkbqVoScViaU" * "nih:///sha-256;703f68f42aba2c6de30f488a5ea122fef76324679c9bf89791ba95a1271589a5" */
|
|
711
737
|
publicKeyId?: string;
|