Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d0052d5

Browse files
committedFeb 18, 2025
feat(containeranalysis): update the api
#### containeranalysis:v1 The following keys were added: - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1Build.properties.dependencies (Total Keys: 2) - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions.properties.pubsubTopic.type (Total Keys: 1) - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency (Total Keys: 14) #### containeranalysis:v1alpha1 The following keys were added: - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1Build.properties.dependencies (Total Keys: 2) - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions.properties.pubsubTopic.type (Total Keys: 1) - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency (Total Keys: 14) #### containeranalysis:v1beta1 The following keys were added: - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1Build.properties.dependencies (Total Keys: 2) - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions.properties.pubsubTopic.type (Total Keys: 1) - schemas.ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency (Total Keys: 14)
1 parent 9f05a3b commit d0052d5

5 files changed

+213
-6
lines changed
 

‎docs/dyn/containeranalysis_v1.projects.locations.resources.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ <h3>Method Details</h3>
9696
The object takes the form of:
9797

9898
{ # The request to generate and export SBOM. Target must be specified for the request.
99-
&quot;cloudStorageLocation&quot;: { # Empty placeholder to denote that this is a Google Cloud Storage export request. # Empty placeholder to denote that this is a Google Cloud Storage export request.
99+
&quot;cloudStorageLocation&quot;: { # Empty placeholder to denote that this is a Google Cloud Storage export request. # Optional. Empty placeholder to denote that this is a Google Cloud Storage export request.
100100
},
101101
}
102102

‎docs/dyn/containeranalysis_v1.projects.resources.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ <h3>Method Details</h3>
9696
The object takes the form of:
9797

9898
{ # The request to generate and export SBOM. Target must be specified for the request.
99-
&quot;cloudStorageLocation&quot;: { # Empty placeholder to denote that this is a Google Cloud Storage export request. # Empty placeholder to denote that this is a Google Cloud Storage export request.
99+
&quot;cloudStorageLocation&quot;: { # Empty placeholder to denote that this is a Google Cloud Storage export request. # Optional. Empty placeholder to denote that this is a Google Cloud Storage export request.
100100
},
101101
}
102102

‎googleapiclient/discovery_cache/documents/containeranalysis.v1.json

+71-2
Original file line numberDiff line numberDiff line change
@@ -1655,7 +1655,7 @@
16551655
}
16561656
}
16571657
},
1658-
"revision": "20250124",
1658+
"revision": "20250207",
16591659
"rootUrl": "https://containeranalysis.googleapis.com/",
16601660
"schemas": {
16611661
"AliasContext": {
@@ -2942,6 +2942,13 @@
29422942
"readOnly": true,
29432943
"type": "string"
29442944
},
2945+
"dependencies": {
2946+
"description": "Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.",
2947+
"items": {
2948+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency"
2949+
},
2950+
"type": "array"
2951+
},
29452952
"failureInfo": {
29462953
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo",
29472954
"description": "Output only. Contains information about the build when status=FAILURE.",
@@ -3292,6 +3299,10 @@ false
32923299
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption",
32933300
"description": "Optional. Specification for execution on a `WorkerPool`. See [running builds in a private pool](https://cloud.google.com/build/docs/private-pools/run-builds-in-private-pool) for more information."
32943301
},
3302+
"pubsubTopic": {
3303+
"description": "Optional. Option to specify the Pub/Sub topic to receive build status updates.",
3304+
"type": "string"
3305+
},
32953306
"requestedVerifyOption": {
32963307
"description": "Requested verifiability options.",
32973308
"enum": [
@@ -3564,6 +3575,64 @@ false
35643575
},
35653576
"type": "object"
35663577
},
3578+
"ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency": {
3579+
"description": "A dependency that the Cloud Build worker will fetch before executing user steps.",
3580+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency",
3581+
"properties": {
3582+
"empty": {
3583+
"description": "If set to true disable all dependency fetching (ignoring the default source as well).",
3584+
"type": "boolean"
3585+
},
3586+
"gitSource": {
3587+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency",
3588+
"description": "Represents a git repository as a build dependency."
3589+
}
3590+
},
3591+
"type": "object"
3592+
},
3593+
"ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency": {
3594+
"description": "Represents a git repository as a build dependency.",
3595+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency",
3596+
"properties": {
3597+
"depth": {
3598+
"description": "Optional. How much history should be fetched for the build (default 1, -1 for all history).",
3599+
"format": "int64",
3600+
"type": "string"
3601+
},
3602+
"destPath": {
3603+
"description": "Required. Where should the files be placed on the worker.",
3604+
"type": "string"
3605+
},
3606+
"recurseSubmodules": {
3607+
"description": "Optional. True if submodules should be fetched too (default false).",
3608+
"type": "boolean"
3609+
},
3610+
"repository": {
3611+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository",
3612+
"description": "Required. The kind of repo (url or dev connect)."
3613+
},
3614+
"revision": {
3615+
"description": "Required. The revision that we will fetch the repo at.",
3616+
"type": "string"
3617+
}
3618+
},
3619+
"type": "object"
3620+
},
3621+
"ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository": {
3622+
"description": "A repository for a git source.",
3623+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository",
3624+
"properties": {
3625+
"developerConnect": {
3626+
"description": "The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`",
3627+
"type": "string"
3628+
},
3629+
"url": {
3630+
"description": "Location of the Git repository.",
3631+
"type": "string"
3632+
}
3633+
},
3634+
"type": "object"
3635+
},
35673636
"ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig": {
35683637
"description": "This config defines the location of a source through Developer Connect.",
35693638
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig",
@@ -4472,7 +4541,7 @@ false
44724541
"properties": {
44734542
"cloudStorageLocation": {
44744543
"$ref": "CloudStorageLocation",
4475-
"description": "Empty placeholder to denote that this is a Google Cloud Storage export request."
4544+
"description": "Optional. Empty placeholder to denote that this is a Google Cloud Storage export request."
44764545
}
44774546
},
44784547
"type": "object"

‎googleapiclient/discovery_cache/documents/containeranalysis.v1alpha1.json

+70-1
Original file line numberDiff line numberDiff line change
@@ -1420,7 +1420,7 @@
14201420
}
14211421
}
14221422
},
1423-
"revision": "20250124",
1423+
"revision": "20250207",
14241424
"rootUrl": "https://containeranalysis.googleapis.com/",
14251425
"schemas": {
14261426
"AnalysisCompleted": {
@@ -2513,6 +2513,13 @@
25132513
"readOnly": true,
25142514
"type": "string"
25152515
},
2516+
"dependencies": {
2517+
"description": "Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.",
2518+
"items": {
2519+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency"
2520+
},
2521+
"type": "array"
2522+
},
25162523
"failureInfo": {
25172524
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo",
25182525
"description": "Output only. Contains information about the build when status=FAILURE.",
@@ -2863,6 +2870,10 @@ false
28632870
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption",
28642871
"description": "Optional. Specification for execution on a `WorkerPool`. See [running builds in a private pool](https://cloud.google.com/build/docs/private-pools/run-builds-in-private-pool) for more information."
28652872
},
2873+
"pubsubTopic": {
2874+
"description": "Optional. Option to specify the Pub/Sub topic to receive build status updates.",
2875+
"type": "string"
2876+
},
28662877
"requestedVerifyOption": {
28672878
"description": "Requested verifiability options.",
28682879
"enum": [
@@ -3135,6 +3146,64 @@ false
31353146
},
31363147
"type": "object"
31373148
},
3149+
"ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency": {
3150+
"description": "A dependency that the Cloud Build worker will fetch before executing user steps.",
3151+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency",
3152+
"properties": {
3153+
"empty": {
3154+
"description": "If set to true disable all dependency fetching (ignoring the default source as well).",
3155+
"type": "boolean"
3156+
},
3157+
"gitSource": {
3158+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency",
3159+
"description": "Represents a git repository as a build dependency."
3160+
}
3161+
},
3162+
"type": "object"
3163+
},
3164+
"ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency": {
3165+
"description": "Represents a git repository as a build dependency.",
3166+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency",
3167+
"properties": {
3168+
"depth": {
3169+
"description": "Optional. How much history should be fetched for the build (default 1, -1 for all history).",
3170+
"format": "int64",
3171+
"type": "string"
3172+
},
3173+
"destPath": {
3174+
"description": "Required. Where should the files be placed on the worker.",
3175+
"type": "string"
3176+
},
3177+
"recurseSubmodules": {
3178+
"description": "Optional. True if submodules should be fetched too (default false).",
3179+
"type": "boolean"
3180+
},
3181+
"repository": {
3182+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository",
3183+
"description": "Required. The kind of repo (url or dev connect)."
3184+
},
3185+
"revision": {
3186+
"description": "Required. The revision that we will fetch the repo at.",
3187+
"type": "string"
3188+
}
3189+
},
3190+
"type": "object"
3191+
},
3192+
"ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository": {
3193+
"description": "A repository for a git source.",
3194+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository",
3195+
"properties": {
3196+
"developerConnect": {
3197+
"description": "The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`",
3198+
"type": "string"
3199+
},
3200+
"url": {
3201+
"description": "Location of the Git repository.",
3202+
"type": "string"
3203+
}
3204+
},
3205+
"type": "object"
3206+
},
31383207
"ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig": {
31393208
"description": "This config defines the location of a source through Developer Connect.",
31403209
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig",

‎googleapiclient/discovery_cache/documents/containeranalysis.v1beta1.json

+70-1
Original file line numberDiff line numberDiff line change
@@ -1711,7 +1711,7 @@
17111711
}
17121712
}
17131713
},
1714-
"revision": "20250124",
1714+
"revision": "20250207",
17151715
"rootUrl": "https://containeranalysis.googleapis.com/",
17161716
"schemas": {
17171717
"AliasContext": {
@@ -2898,6 +2898,13 @@
28982898
"readOnly": true,
28992899
"type": "string"
29002900
},
2901+
"dependencies": {
2902+
"description": "Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.",
2903+
"items": {
2904+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency"
2905+
},
2906+
"type": "array"
2907+
},
29012908
"failureInfo": {
29022909
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo",
29032910
"description": "Output only. Contains information about the build when status=FAILURE.",
@@ -3248,6 +3255,10 @@ false
32483255
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption",
32493256
"description": "Optional. Specification for execution on a `WorkerPool`. See [running builds in a private pool](https://cloud.google.com/build/docs/private-pools/run-builds-in-private-pool) for more information."
32503257
},
3258+
"pubsubTopic": {
3259+
"description": "Optional. Option to specify the Pub/Sub topic to receive build status updates.",
3260+
"type": "string"
3261+
},
32513262
"requestedVerifyOption": {
32523263
"description": "Requested verifiability options.",
32533264
"enum": [
@@ -3520,6 +3531,64 @@ false
35203531
},
35213532
"type": "object"
35223533
},
3534+
"ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency": {
3535+
"description": "A dependency that the Cloud Build worker will fetch before executing user steps.",
3536+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency",
3537+
"properties": {
3538+
"empty": {
3539+
"description": "If set to true disable all dependency fetching (ignoring the default source as well).",
3540+
"type": "boolean"
3541+
},
3542+
"gitSource": {
3543+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency",
3544+
"description": "Represents a git repository as a build dependency."
3545+
}
3546+
},
3547+
"type": "object"
3548+
},
3549+
"ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency": {
3550+
"description": "Represents a git repository as a build dependency.",
3551+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency",
3552+
"properties": {
3553+
"depth": {
3554+
"description": "Optional. How much history should be fetched for the build (default 1, -1 for all history).",
3555+
"format": "int64",
3556+
"type": "string"
3557+
},
3558+
"destPath": {
3559+
"description": "Required. Where should the files be placed on the worker.",
3560+
"type": "string"
3561+
},
3562+
"recurseSubmodules": {
3563+
"description": "Optional. True if submodules should be fetched too (default false).",
3564+
"type": "boolean"
3565+
},
3566+
"repository": {
3567+
"$ref": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository",
3568+
"description": "Required. The kind of repo (url or dev connect)."
3569+
},
3570+
"revision": {
3571+
"description": "Required. The revision that we will fetch the repo at.",
3572+
"type": "string"
3573+
}
3574+
},
3575+
"type": "object"
3576+
},
3577+
"ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository": {
3578+
"description": "A repository for a git source.",
3579+
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository",
3580+
"properties": {
3581+
"developerConnect": {
3582+
"description": "The Developer Connect Git repository link or the url that matches a repository link in the current project, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`",
3583+
"type": "string"
3584+
},
3585+
"url": {
3586+
"description": "Location of the Git repository.",
3587+
"type": "string"
3588+
}
3589+
},
3590+
"type": "object"
3591+
},
35233592
"ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig": {
35243593
"description": "This config defines the location of a source through Developer Connect.",
35253594
"id": "ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig",

0 commit comments

Comments
 (0)
Please sign in to comment.