@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20241206 → 0.0.20250124
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 +29 -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: 20250124
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -285,6 +285,8 @@ declare namespace gapi.client {
|
|
|
285
285
|
url?: string;
|
|
286
286
|
}
|
|
287
287
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts {
|
|
288
|
+
/** Optional. A list of Go modules to be uploaded to Artifact Registry upon successful completion of all build steps. If any objects fail to be pushed, the build is marked FAILURE. */
|
|
289
|
+
goModules?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule[];
|
|
288
290
|
/** A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE. */
|
|
289
291
|
images?: string[];
|
|
290
292
|
/** A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE. */
|
|
@@ -304,6 +306,20 @@ declare namespace gapi.client {
|
|
|
304
306
|
/** Output only. Stores timing information for pushing all artifact objects. */
|
|
305
307
|
timing?: ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan;
|
|
306
308
|
}
|
|
309
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule {
|
|
310
|
+
/** Optional. The Go module's "module path". e.g. example.com/foo/v2 */
|
|
311
|
+
modulePath?: string;
|
|
312
|
+
/** Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-release identifiers can also be added by appending a dash and dot separated ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5 */
|
|
313
|
+
moduleVersion?: string;
|
|
314
|
+
/** Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults to the build’s location. */
|
|
315
|
+
repositoryLocation?: string;
|
|
316
|
+
/** Optional. Artifact Registry repository name. Specified Go modules will be zipped and uploaded to Artifact Registry with this location as a prefix. e.g. my-go-repo */
|
|
317
|
+
repositoryName?: string;
|
|
318
|
+
/** Optional. Project ID of the Artifact Registry repository. Defaults to the build project. */
|
|
319
|
+
repositoryProjectId?: string;
|
|
320
|
+
/** Optional. Source path of the go.mod file in the build's workspace. If not specified, this will default to the current directory. e.g. ~/code/go/mypackage */
|
|
321
|
+
sourcePath?: string;
|
|
322
|
+
}
|
|
307
323
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact {
|
|
308
324
|
/** Maven `artifactId` value used when uploading the artifact to Artifact Registry. */
|
|
309
325
|
artifactId?: string;
|
|
@@ -415,6 +431,8 @@ declare namespace gapi.client {
|
|
|
415
431
|
diskSizeGb?: string;
|
|
416
432
|
/** Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file. */
|
|
417
433
|
dynamicSubstitutions?: boolean;
|
|
434
|
+
/** Optional. Option to specify whether structured logging is enabled. If true, JSON-formatted logs are parsed as structured logs. */
|
|
435
|
+
enableStructuredLogging?: boolean;
|
|
418
436
|
/** A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE". */
|
|
419
437
|
env?: string[];
|
|
420
438
|
/** Option to specify the logging mode, which determines if and where build logs are stored. */
|
|
@@ -569,6 +587,8 @@ declare namespace gapi.client {
|
|
|
569
587
|
buildStepImages?: string[];
|
|
570
588
|
/** List of build step outputs, produced by builder images, in the order corresponding to build step indices. [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders) can produce this output by writing to `$BUILDER_OUTPUT/output`. Only the first 50KB of data is stored. Note that the `$BUILDER_OUTPUT` variable is read-only and can't be substituted. */
|
|
571
589
|
buildStepOutputs?: string[];
|
|
590
|
+
/** Optional. Go module artifacts uploaded to Artifact Registry at the end of the build. */
|
|
591
|
+
goModules?: ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule[];
|
|
572
592
|
/** Container images that were built as a part of the build. */
|
|
573
593
|
images?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage[];
|
|
574
594
|
/** Maven artifacts uploaded to Artifact Registry at the end of the build. */
|
|
@@ -652,6 +672,14 @@ declare namespace gapi.client {
|
|
|
652
672
|
/** Start of time span. */
|
|
653
673
|
startTime?: string;
|
|
654
674
|
}
|
|
675
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule {
|
|
676
|
+
/** Hash types and values of the Go Module Artifact. */
|
|
677
|
+
fileHashes?: ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes;
|
|
678
|
+
/** Output only. Stores timing information for pushing the specified artifact. */
|
|
679
|
+
pushTiming?: ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan;
|
|
680
|
+
/** URI of the uploaded artifact. */
|
|
681
|
+
uri?: string;
|
|
682
|
+
}
|
|
655
683
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact {
|
|
656
684
|
/** Hash types and values of the Maven Artifact. */
|
|
657
685
|
fileHashes?: ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes;
|