@maxim_mazurok/gapi.client.containeranalysis-v1beta1 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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230519
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -492,8 +492,8 @@ declare namespace gapi.client {
|
|
|
492
492
|
images?:
|
|
493
493
|
string[];
|
|
494
494
|
/**
|
|
495
|
-
*
|
|
496
|
-
*
|
|
495
|
+
* 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
|
|
496
|
+
* format `${logs_bucket}/log-${build_id}.txt`.
|
|
497
497
|
*/
|
|
498
498
|
logsBucket?:
|
|
499
499
|
string;
|
|
@@ -615,7 +615,7 @@ declare namespace gapi.client {
|
|
|
615
615
|
/** Option to specify the logging mode, which determines if and where build logs are stored. */
|
|
616
616
|
logging?:
|
|
617
617
|
string;
|
|
618
|
-
/** Option to define build log streaming behavior to
|
|
618
|
+
/** Option to define build log streaming behavior to Cloud Storage. */
|
|
619
619
|
logStreamingOption?:
|
|
620
620
|
string;
|
|
621
621
|
/** Compute Engine machine type on which to run the build. */
|
|
@@ -898,11 +898,11 @@ declare namespace gapi.client {
|
|
|
898
898
|
/** If provided, get the source from this location in a Cloud Source Repository. */
|
|
899
899
|
repoSource?:
|
|
900
900
|
ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource;
|
|
901
|
-
/** If provided, get the source from this location in
|
|
901
|
+
/** If provided, get the source from this location in Cloud Storage. */
|
|
902
902
|
storageSource?:
|
|
903
903
|
ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource;
|
|
904
904
|
/**
|
|
905
|
-
* If provided, get the source from this manifest in
|
|
905
|
+
* If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description
|
|
906
906
|
* [here](https://github.com/GoogleCloudPlatform/cloud-builders/tree/master/gcs-fetcher).
|
|
907
907
|
*/
|
|
908
908
|
storageSourceManifest?:
|
|
@@ -927,24 +927,24 @@ declare namespace gapi.client {
|
|
|
927
927
|
ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest;
|
|
928
928
|
}
|
|
929
929
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource {
|
|
930
|
-
/**
|
|
930
|
+
/** Cloud Storage bucket containing the source (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
931
931
|
bucket?:
|
|
932
932
|
string;
|
|
933
|
-
/**
|
|
933
|
+
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
934
934
|
generation?:
|
|
935
935
|
string;
|
|
936
|
-
/**
|
|
936
|
+
/** Cloud Storage object containing the source. This object must be a zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build. */
|
|
937
937
|
object?:
|
|
938
938
|
string;
|
|
939
939
|
}
|
|
940
940
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest {
|
|
941
|
-
/**
|
|
941
|
+
/** Cloud Storage bucket containing the source manifest (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
942
942
|
bucket?:
|
|
943
943
|
string;
|
|
944
|
-
/**
|
|
944
|
+
/** Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used. */
|
|
945
945
|
generation?:
|
|
946
946
|
string;
|
|
947
|
-
/**
|
|
947
|
+
/** Cloud Storage object containing the source manifest. This object must be a JSON file. */
|
|
948
948
|
object?:
|
|
949
949
|
string;
|
|
950
950
|
}
|
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 */
|