@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20250418 → 0.0.20250509
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 +29 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250509
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -334,7 +334,7 @@ declare namespace gapi.client {
|
|
|
334
334
|
artifactId?: string;
|
|
335
335
|
/** Maven `groupId` value used when uploading the artifact to Artifact Registry. */
|
|
336
336
|
groupId?: string;
|
|
337
|
-
/** Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar. */
|
|
337
|
+
/** Optional. Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar. */
|
|
338
338
|
path?: string;
|
|
339
339
|
/** Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix. */
|
|
340
340
|
repository?: string;
|
|
@@ -1082,6 +1082,8 @@ declare namespace gapi.client {
|
|
|
1082
1082
|
interface LayerDetails {
|
|
1083
1083
|
/** The base images the layer is found within. */
|
|
1084
1084
|
baseImages?: BaseImage[];
|
|
1085
|
+
/** The layer chain ID (sha256 hash) of the layer in the container image. https://github.com/opencontainers/image-spec/blob/main/config.md#layer-chainid */
|
|
1086
|
+
chainId?: string;
|
|
1085
1087
|
/** The layer build command that was used to build the layer. This may not be found in all layers depending on how the container image is built. */
|
|
1086
1088
|
command?: string;
|
|
1087
1089
|
/** The diff ID (typically a sha256 hash) of the layer in the container image. */
|
|
@@ -1178,6 +1180,8 @@ declare namespace gapi.client {
|
|
|
1178
1180
|
relatedUrl?: RelatedUrl[];
|
|
1179
1181
|
/** A note describing an SBOM reference. */
|
|
1180
1182
|
sbomReference?: SBOMReferenceNote;
|
|
1183
|
+
/** A note describing a secret. */
|
|
1184
|
+
secret?: any;
|
|
1181
1185
|
/** A one sentence description of this note. */
|
|
1182
1186
|
shortDescription?: string;
|
|
1183
1187
|
/** Output only. The time this note was last updated. This field can be used as a filter in list requests. */
|
|
@@ -1222,6 +1226,8 @@ declare namespace gapi.client {
|
|
|
1222
1226
|
resourceUri?: string;
|
|
1223
1227
|
/** Describes a specific SBOM reference occurrences. */
|
|
1224
1228
|
sbomReference?: SBOMReferenceOccurrence;
|
|
1229
|
+
/** Describes a secret. */
|
|
1230
|
+
secret?: SecretOccurrence;
|
|
1225
1231
|
/** Output only. The time this occurrence was last updated. */
|
|
1226
1232
|
updateTime?: string;
|
|
1227
1233
|
/** Describes an available package upgrade on the linked resource. */
|
|
@@ -1412,6 +1418,27 @@ declare namespace gapi.client {
|
|
|
1412
1418
|
/** The progress of the SBOM generation. */
|
|
1413
1419
|
sbomState?: string;
|
|
1414
1420
|
}
|
|
1421
|
+
interface SecretLocation {
|
|
1422
|
+
/** The secret is found from a file. */
|
|
1423
|
+
fileLocation?: GrafeasV1FileLocation;
|
|
1424
|
+
}
|
|
1425
|
+
interface SecretNote {}
|
|
1426
|
+
interface SecretOccurrence {
|
|
1427
|
+
/** Required. Type of secret. */
|
|
1428
|
+
kind?: string;
|
|
1429
|
+
/** Optional. Locations where the secret is detected. */
|
|
1430
|
+
locations?: SecretLocation[];
|
|
1431
|
+
/** Optional. Status of the secret. */
|
|
1432
|
+
statuses?: SecretStatus[];
|
|
1433
|
+
}
|
|
1434
|
+
interface SecretStatus {
|
|
1435
|
+
/** Optional. Optional message about the status code. */
|
|
1436
|
+
message?: string;
|
|
1437
|
+
/** Optional. The status of the secret. */
|
|
1438
|
+
status?: string;
|
|
1439
|
+
/** Optional. The time the secret status was last updated. */
|
|
1440
|
+
updateTime?: string;
|
|
1441
|
+
}
|
|
1415
1442
|
interface SetIamPolicyRequest {
|
|
1416
1443
|
/** REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud services (such as Projects) might reject them. */
|
|
1417
1444
|
policy?: Policy;
|