@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20260220 → 0.0.20260313
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 +15 -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://containeranalysis.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260313
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -312,6 +312,8 @@ declare namespace gapi.client {
|
|
|
312
312
|
npmPackages?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage[];
|
|
313
313
|
/** A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE. */
|
|
314
314
|
objects?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects;
|
|
315
|
+
/** Optional. A list of OCI images to be uploaded to Artifact Registry upon successful completion of all build steps. OCI images in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any images fail to be pushed, the build is marked FAILURE. */
|
|
316
|
+
oci?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci[];
|
|
315
317
|
/** A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE. */
|
|
316
318
|
pythonPackages?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage[];
|
|
317
319
|
}
|
|
@@ -357,6 +359,14 @@ declare namespace gapi.client {
|
|
|
357
359
|
/** Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix. */
|
|
358
360
|
repository?: string;
|
|
359
361
|
}
|
|
362
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci {
|
|
363
|
+
/** Required. Path on the local file system where to find the container to upload. e.g. /workspace/my-image.tar */
|
|
364
|
+
file?: string;
|
|
365
|
+
/** Required. Registry path to upload the container to. e.g. us-east1-docker.pkg.dev/my-project/my-repo/my-image */
|
|
366
|
+
registryPath?: string;
|
|
367
|
+
/** Optional. Tags to apply to the uploaded image. e.g. latest, 1.0.0 */
|
|
368
|
+
tags?: string[];
|
|
369
|
+
}
|
|
360
370
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage {
|
|
361
371
|
/** Path globs used to match files in the build's workspace. For Python/ Twine, this is usually `dist/*`, and sometimes additionally an `.asc` file. */
|
|
362
372
|
paths?: string[];
|
|
@@ -534,6 +544,8 @@ declare namespace gapi.client {
|
|
|
534
544
|
digest?: string;
|
|
535
545
|
/** Name used to push the container image to Google Container Registry, as presented to `docker push`. */
|
|
536
546
|
name?: string;
|
|
547
|
+
/** Output only. The OCI media type of the artifact. Non-OCI images, such as Docker images, will have an unspecified value. */
|
|
548
|
+
ociMediaType?: string;
|
|
537
549
|
/** Output only. Stores timing information for pushing the specified image. */
|
|
538
550
|
pushTiming?: ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan;
|
|
539
551
|
}
|
|
@@ -1003,6 +1015,8 @@ declare namespace gapi.client {
|
|
|
1003
1015
|
filePath?: string;
|
|
1004
1016
|
/** Each package found in a file should have its own layer metadata (that is, information from the origin layer of the package). */
|
|
1005
1017
|
layerDetails?: LayerDetails;
|
|
1018
|
+
/** Line number in the file where the package was found. Optional field that only applies to source repository scanning. */
|
|
1019
|
+
lineNumber?: number;
|
|
1006
1020
|
}
|
|
1007
1021
|
interface GrafeasV1SlsaProvenanceZeroTwoSlsaBuilder {
|
|
1008
1022
|
id?: string;
|