@maxim_mazurok/gapi.client.containeranalysis-v1alpha1 0.0.20230623 → 0.0.20230707
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 -1
- package/package.json +1 -1
- package/tests.ts +9 -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: 20230707
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1205,6 +1205,9 @@ declare namespace gapi.client {
|
|
|
1205
1205
|
/** Output only. An operation that indicates the status of the current scan. This field is deprecated, do not use. */
|
|
1206
1206
|
operation?:
|
|
1207
1207
|
Operation;
|
|
1208
|
+
/** Output only. The status of an SBOM generation. */
|
|
1209
|
+
sbomStatus?:
|
|
1210
|
+
SBOMStatus;
|
|
1208
1211
|
}
|
|
1209
1212
|
interface Discovery {
|
|
1210
1213
|
/** The kind of analysis that is handled by this discovery. */
|
|
@@ -2305,6 +2308,14 @@ declare namespace gapi.client {
|
|
|
2305
2308
|
signatures?:
|
|
2306
2309
|
EnvelopeSignature[];
|
|
2307
2310
|
}
|
|
2311
|
+
interface SBOMStatus {
|
|
2312
|
+
/** Output only. If there was an error generating an SBOM, this will indicate what that error was. */
|
|
2313
|
+
error?:
|
|
2314
|
+
string;
|
|
2315
|
+
/** Output only. The progress of the SBOM generation. */
|
|
2316
|
+
sbomState?:
|
|
2317
|
+
string;
|
|
2318
|
+
}
|
|
2308
2319
|
interface ScanConfig {
|
|
2309
2320
|
/** Output only. The time this scan config was created. */
|
|
2310
2321
|
createTime?:
|
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: 20230707
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -1099,6 +1099,10 @@ gapi.load('client', async () => {
|
|
|
1099
1099
|
A: 42
|
|
1100
1100
|
},
|
|
1101
1101
|
},
|
|
1102
|
+
sbomStatus: {
|
|
1103
|
+
error: "Test string",
|
|
1104
|
+
sbomState: "Test string",
|
|
1105
|
+
},
|
|
1102
1106
|
},
|
|
1103
1107
|
dsseAttestation: {
|
|
1104
1108
|
envelope: {
|
|
@@ -1931,6 +1935,10 @@ gapi.load('client', async () => {
|
|
|
1931
1935
|
A: 42
|
|
1932
1936
|
},
|
|
1933
1937
|
},
|
|
1938
|
+
sbomStatus: {
|
|
1939
|
+
error: "Test string",
|
|
1940
|
+
sbomState: "Test string",
|
|
1941
|
+
},
|
|
1934
1942
|
},
|
|
1935
1943
|
dsseAttestation: {
|
|
1936
1944
|
envelope: {
|