@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20230512 → 0.0.20230519
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 +12 -12
- package/package.json +1 -1
- package/tests.ts +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: 20230519
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -548,8 +548,8 @@ declare namespace gapi.client {
|
|
|
548
548
|
images?:
|
|
549
549
|
string[];
|
|
550
550
|
/**
|
|
551
|
-
*
|
|
552
|
-
*
|
|
551
|
+
* Cloud Storage bucket where logs should be written (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). Logs file names will be of the
|
|
552
|
+
* format `${logs_bucket}/log-${build_id}.txt`.
|
|
553
553
|
*/
|
|
554
554
|
logsBucket?:
|
|
555
555
|
string;
|
|
@@ -671,7 +671,7 @@ declare namespace gapi.client {
|
|
|
671
671
|
/** Option to specify the logging mode, which determines if and where build logs are stored. */
|
|
672
672
|
logging?:
|
|
673
673
|
string;
|
|
674
|
-
/** Option to define build log streaming behavior to
|
|
674
|
+
/** Option to define build log streaming behavior to Cloud Storage. */
|
|
675
675
|
logStreamingOption?:
|
|
676
676
|
string;
|
|
677
677
|
/** Compute Engine machine type on which to run the build. */
|
|
@@ -954,11 +954,11 @@ declare namespace gapi.client {
|
|
|
954
954
|
/** If provided, get the source from this location in a Cloud Source Repository. */
|
|
955
955
|
repoSource?:
|
|
956
956
|
ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource;
|
|
957
|
-
/** If provided, get the source from this location in
|
|
957
|
+
/** If provided, get the source from this location in Cloud Storage. */
|
|
958
958
|
storageSource?:
|
|
959
959
|
ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource;
|
|
960
960
|
/**
|
|
961
|
-
* If provided, get the source from this manifest in
|
|
961
|
+
* If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description
|
|
962
962
|
* [here](https://github.com/GoogleCloudPlatform/cloud-builders/tree/master/gcs-fetcher).
|
|
963
963
|
*/
|
|
964
964
|
storageSourceManifest?:
|
|
@@ -983,24 +983,24 @@ declare namespace gapi.client {
|
|
|
983
983
|
ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest;
|
|
984
984
|
}
|
|
985
985
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource {
|
|
986
|
-
/**
|
|
986
|
+
/** Cloud Storage bucket containing the source (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
987
987
|
bucket?:
|
|
988
988
|
string;
|
|
989
|
-
/**
|
|
989
|
+
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
990
990
|
generation?:
|
|
991
991
|
string;
|
|
992
|
-
/**
|
|
992
|
+
/** Cloud Storage object containing the source. This object must be a zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build. */
|
|
993
993
|
object?:
|
|
994
994
|
string;
|
|
995
995
|
}
|
|
996
996
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest {
|
|
997
|
-
/**
|
|
997
|
+
/** Cloud Storage bucket containing the source manifest (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
998
998
|
bucket?:
|
|
999
999
|
string;
|
|
1000
|
-
/**
|
|
1000
|
+
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
1001
1001
|
generation?:
|
|
1002
1002
|
string;
|
|
1003
|
-
/**
|
|
1003
|
+
/** Cloud Storage object containing the source manifest. This object must be a JSON file. */
|
|
1004
1004
|
object?:
|
|
1005
1005
|
string;
|
|
1006
1006
|
}
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230519
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|