@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.0.20240322 → 0.0.20240503
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 +22 -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=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240503
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -329,6 +329,8 @@ declare namespace gapi.client {
|
|
|
329
329
|
failureInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo;
|
|
330
330
|
/** Output only. Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution. */
|
|
331
331
|
finishTime?: string;
|
|
332
|
+
/** Optional. Configuration for git operations. */
|
|
333
|
+
gitConfig?: ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig;
|
|
332
334
|
/** Output only. Unique identifier of the build. */
|
|
333
335
|
id?: string;
|
|
334
336
|
/** A list of images to be pushed upon the successful completion of all build steps. The images are 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 status is marked `FAILURE`. */
|
|
@@ -486,10 +488,26 @@ declare namespace gapi.client {
|
|
|
486
488
|
/** The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
487
489
|
revision?: string;
|
|
488
490
|
}
|
|
491
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig {
|
|
492
|
+
/** Required. Directory, relative to the source root, in which to run the build. */
|
|
493
|
+
dir?: string;
|
|
494
|
+
/** Required. The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`. */
|
|
495
|
+
gitRepositoryLink?: string;
|
|
496
|
+
/** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
497
|
+
revision?: string;
|
|
498
|
+
}
|
|
489
499
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes {
|
|
490
500
|
/** Collection of file hashes. */
|
|
491
501
|
fileHash?: ContaineranalysisGoogleDevtoolsCloudbuildV1Hash[];
|
|
492
502
|
}
|
|
503
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig {
|
|
504
|
+
/** Configuration for HTTP related git operations. */
|
|
505
|
+
http?: ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig;
|
|
506
|
+
}
|
|
507
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig {
|
|
508
|
+
/** SecretVersion resource of the HTTP proxy URL. The proxy URL should be in format protocol://@]proxyhost[:port]. */
|
|
509
|
+
proxySecretVersionName?: string;
|
|
510
|
+
}
|
|
493
511
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource {
|
|
494
512
|
/** Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's `dir` is specified and is an absolute path, this value is ignored for that step's execution. */
|
|
495
513
|
dir?: string;
|
|
@@ -535,7 +553,7 @@ declare namespace gapi.client {
|
|
|
535
553
|
artifactTiming?: ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan;
|
|
536
554
|
/** List of build step digests, in the order corresponding to build step indices. */
|
|
537
555
|
buildStepImages?: string[];
|
|
538
|
-
/** 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. */
|
|
556
|
+
/** 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. */
|
|
539
557
|
buildStepOutputs?: string[];
|
|
540
558
|
/** Container images that were built as a part of the build. */
|
|
541
559
|
images?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage[];
|
|
@@ -569,6 +587,8 @@ declare namespace gapi.client {
|
|
|
569
587
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Source {
|
|
570
588
|
/** Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource. */
|
|
571
589
|
connectedRepository?: ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository;
|
|
590
|
+
/** If provided, get the source from this Developer Connect config. */
|
|
591
|
+
developerConnectConfig?: ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig;
|
|
572
592
|
/** If provided, get the source from this Git repository. */
|
|
573
593
|
gitSource?: ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource;
|
|
574
594
|
/** If provided, get the source from this location in a Cloud Source Repository. */
|