@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.0.20240412 → 0.0.20240514
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 +34 -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: 20240514
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -245,6 +245,8 @@ declare namespace gapi.client {
|
|
|
245
245
|
nonComplianceReason?: string;
|
|
246
246
|
/** A list of files which are violating compliance checks. */
|
|
247
247
|
nonCompliantFiles?: NonCompliantFile[];
|
|
248
|
+
/** The OS and config version the benchmark was run on. */
|
|
249
|
+
version?: ComplianceVersion;
|
|
248
250
|
}
|
|
249
251
|
interface ComplianceVersion {
|
|
250
252
|
/** The name of the document that defines this benchmark, e.g. "CIS Container-Optimized OS". */
|
|
@@ -329,6 +331,8 @@ declare namespace gapi.client {
|
|
|
329
331
|
failureInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo;
|
|
330
332
|
/** 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
333
|
finishTime?: string;
|
|
334
|
+
/** Optional. Configuration for git operations. */
|
|
335
|
+
gitConfig?: ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig;
|
|
332
336
|
/** Output only. Unique identifier of the build. */
|
|
333
337
|
id?: string;
|
|
334
338
|
/** 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 +490,36 @@ declare namespace gapi.client {
|
|
|
486
490
|
/** The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
487
491
|
revision?: string;
|
|
488
492
|
}
|
|
493
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig {
|
|
494
|
+
/** Required. Directory, relative to the source root, in which to run the build. */
|
|
495
|
+
dir?: string;
|
|
496
|
+
/** Required. The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`. */
|
|
497
|
+
gitRepositoryLink?: string;
|
|
498
|
+
/** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
|
|
499
|
+
revision?: string;
|
|
500
|
+
}
|
|
489
501
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes {
|
|
490
502
|
/** Collection of file hashes. */
|
|
491
503
|
fileHash?: ContaineranalysisGoogleDevtoolsCloudbuildV1Hash[];
|
|
492
504
|
}
|
|
505
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GCSLocation {
|
|
506
|
+
/** Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#requirements */
|
|
507
|
+
bucket?: string;
|
|
508
|
+
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
509
|
+
generation?: string;
|
|
510
|
+
/** Cloud Storage object. See https://cloud.google.com/storage/docs/naming#objectnames */
|
|
511
|
+
object?: string;
|
|
512
|
+
}
|
|
513
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig {
|
|
514
|
+
/** Configuration for HTTP related git operations. */
|
|
515
|
+
http?: ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig;
|
|
516
|
+
}
|
|
517
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig {
|
|
518
|
+
/** SecretVersion resource of the HTTP proxy URL. The proxy URL should be in format protocol://@]proxyhost[:port]. */
|
|
519
|
+
proxySecretVersionName?: string;
|
|
520
|
+
/** Optional. Cloud Storage object storing the certificate to use with the HTTP proxy. */
|
|
521
|
+
proxySslCaInfo?: ContaineranalysisGoogleDevtoolsCloudbuildV1GCSLocation;
|
|
522
|
+
}
|
|
493
523
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource {
|
|
494
524
|
/** 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
525
|
dir?: string;
|
|
@@ -535,7 +565,7 @@ declare namespace gapi.client {
|
|
|
535
565
|
artifactTiming?: ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan;
|
|
536
566
|
/** List of build step digests, in the order corresponding to build step indices. */
|
|
537
567
|
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. */
|
|
568
|
+
/** 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
569
|
buildStepOutputs?: string[];
|
|
540
570
|
/** Container images that were built as a part of the build. */
|
|
541
571
|
images?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage[];
|
|
@@ -569,6 +599,8 @@ declare namespace gapi.client {
|
|
|
569
599
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Source {
|
|
570
600
|
/** Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource. */
|
|
571
601
|
connectedRepository?: ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository;
|
|
602
|
+
/** If provided, get the source from this Developer Connect config. */
|
|
603
|
+
developerConnectConfig?: ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig;
|
|
572
604
|
/** If provided, get the source from this Git repository. */
|
|
573
605
|
gitSource?: ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource;
|
|
574
606
|
/** If provided, get the source from this location in a Cloud Source Repository. */
|