Skip to content

Commit 7f0983c

Browse files
feat(all): auto-regenerate discovery clients (#3312)
1 parent ffae061 commit 7f0983c

File tree

12 files changed

+259
-30
lines changed

12 files changed

+259
-30
lines changed

containeranalysis/v1beta1/containeranalysis-api.json

Lines changed: 116 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,7 +1771,7 @@
17711771
}
17721772
}
17731773
},
1774-
"revision": "20250829",
1774+
"revision": "20250905",
17751775
"rootUrl": "https://containeranalysis.googleapis.com/",
17761776
"schemas": {
17771777
"AliasContext": {
@@ -4458,7 +4458,8 @@
44584458
"SPDX_FILE",
44594459
"SPDX_RELATIONSHIP",
44604460
"VULNERABILITY_ASSESSMENT",
4461-
"SBOM_REFERENCE"
4461+
"SBOM_REFERENCE",
4462+
"SECRET"
44624463
],
44634464
"enumDescriptions": [
44644465
"Default value. This value is unused.",
@@ -4475,7 +4476,8 @@
44754476
"This represents an SPDX File.",
44764477
"This represents an SPDX Relationship.",
44774478
"This represents a Vulnerability Assessment.",
4478-
"This represents an SBOM Reference."
4479+
"This represents an SBOM Reference.",
4480+
"This represents a secret."
44794481
],
44804482
"type": "string"
44814483
}
@@ -4746,6 +4748,17 @@
47464748
},
47474749
"type": "object"
47484750
},
4751+
"FileLocation": {
4752+
"description": "Indicates the location at which a package was found.",
4753+
"id": "FileLocation",
4754+
"properties": {
4755+
"filePath": {
4756+
"description": "For jars that are contained inside .war files, this filepath can indicate the path to war file combined with the path to jar file.",
4757+
"type": "string"
4758+
}
4759+
},
4760+
"type": "object"
4761+
},
47494762
"FileNote": {
47504763
"description": "FileNote represents an SPDX File Information section: https://spdx.github.io/spdx-spec/4-file-information/",
47514764
"id": "FileNote",
@@ -5698,7 +5711,8 @@
56985711
"SPDX_FILE",
56995712
"SPDX_RELATIONSHIP",
57005713
"VULNERABILITY_ASSESSMENT",
5701-
"SBOM_REFERENCE"
5714+
"SBOM_REFERENCE",
5715+
"SECRET"
57025716
],
57035717
"enumDescriptions": [
57045718
"Default value. This value is unused.",
@@ -5715,7 +5729,8 @@
57155729
"This represents an SPDX File.",
57165730
"This represents an SPDX Relationship.",
57175731
"This represents a Vulnerability Assessment.",
5718-
"This represents an SBOM Reference."
5732+
"This represents an SBOM Reference.",
5733+
"This represents a secret."
57195734
],
57205735
"type": "string"
57215736
},
@@ -5753,6 +5768,10 @@
57535768
"$ref": "SBOMReferenceNote",
57545769
"description": "A note describing an SBOM reference."
57555770
},
5771+
"secret": {
5772+
"$ref": "SecretNote",
5773+
"description": "A note describing a secret."
5774+
},
57565775
"shortDescription": {
57575776
"description": "A one sentence description of this note.",
57585777
"type": "string"
@@ -5843,7 +5862,8 @@
58435862
"SPDX_FILE",
58445863
"SPDX_RELATIONSHIP",
58455864
"VULNERABILITY_ASSESSMENT",
5846-
"SBOM_REFERENCE"
5865+
"SBOM_REFERENCE",
5866+
"SECRET"
58475867
],
58485868
"enumDescriptions": [
58495869
"Default value. This value is unused.",
@@ -5860,7 +5880,8 @@
58605880
"This represents an SPDX File.",
58615881
"This represents an SPDX Relationship.",
58625882
"This represents a Vulnerability Assessment.",
5863-
"This represents an SBOM Reference."
5883+
"This represents an SBOM Reference.",
5884+
"This represents a secret."
58645885
],
58655886
"type": "string"
58665887
},
@@ -5888,6 +5909,10 @@
58885909
"$ref": "SBOMReferenceOccurrence",
58895910
"description": "Describes a specific SBOM reference occurrences."
58905911
},
5912+
"secret": {
5913+
"$ref": "SecretOccurrence",
5914+
"description": "Describes a secret."
5915+
},
58915916
"spdxFile": {
58925917
"$ref": "FileOccurrence",
58935918
"description": "Describes a specific SPDX File."
@@ -6770,6 +6795,90 @@
67706795
},
67716796
"type": "object"
67726797
},
6798+
"SecretLocation": {
6799+
"description": "The location of the secret.",
6800+
"id": "SecretLocation",
6801+
"properties": {
6802+
"fileLocation": {
6803+
"$ref": "FileLocation",
6804+
"description": "The secret is found from a file."
6805+
}
6806+
},
6807+
"type": "object"
6808+
},
6809+
"SecretNote": {
6810+
"description": "The note representing a secret.",
6811+
"id": "SecretNote",
6812+
"properties": {},
6813+
"type": "object"
6814+
},
6815+
"SecretOccurrence": {
6816+
"description": "The occurrence provides details of a secret.",
6817+
"id": "SecretOccurrence",
6818+
"properties": {
6819+
"kind": {
6820+
"description": "Required. Type of secret.",
6821+
"enum": [
6822+
"SECRET_KIND_UNSPECIFIED",
6823+
"SECRET_KIND_UNKNOWN",
6824+
"SECRET_KIND_GCP_SERVICE_ACCOUNT_KEY"
6825+
],
6826+
"enumDescriptions": [
6827+
"Unspecified",
6828+
"The secret kind is unknown.",
6829+
"A GCP service account key per: https://cloud.google.com/iam/docs/creating-managing-service-account-keys"
6830+
],
6831+
"type": "string"
6832+
},
6833+
"locations": {
6834+
"description": "Optional. Locations where the secret is detected.",
6835+
"items": {
6836+
"$ref": "SecretLocation"
6837+
},
6838+
"type": "array"
6839+
},
6840+
"statuses": {
6841+
"description": "Optional. Status of the secret.",
6842+
"items": {
6843+
"$ref": "SecretStatus"
6844+
},
6845+
"type": "array"
6846+
}
6847+
},
6848+
"type": "object"
6849+
},
6850+
"SecretStatus": {
6851+
"description": "The status of the secret with a timestamp.",
6852+
"id": "SecretStatus",
6853+
"properties": {
6854+
"message": {
6855+
"description": "Optional. Optional message about the status code.",
6856+
"type": "string"
6857+
},
6858+
"status": {
6859+
"description": "Optional. The status of the secret.",
6860+
"enum": [
6861+
"STATUS_UNSPECIFIED",
6862+
"UNKNOWN",
6863+
"VALID",
6864+
"INVALID"
6865+
],
6866+
"enumDescriptions": [
6867+
"Unspecified",
6868+
"The status of the secret is unknown.",
6869+
"The secret is valid.",
6870+
"The secret is invalid."
6871+
],
6872+
"type": "string"
6873+
},
6874+
"updateTime": {
6875+
"description": "Optional. The time the secret status was last updated.",
6876+
"format": "google-datetime",
6877+
"type": "string"
6878+
}
6879+
},
6880+
"type": "object"
6881+
},
67736882
"SetIamPolicyRequest": {
67746883
"description": "Request message for `SetIamPolicy` method.",
67756884
"id": "SetIamPolicyRequest",

containeranalysis/v1beta1/containeranalysis-gen.go

Lines changed: 120 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

documentai/v1/documentai-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
],
199199
"parameters": {
200200
"extraLocationTypes": {
201-
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
201+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
202202
"location": "query",
203203
"repeated": true,
204204
"type": "string"
@@ -1048,7 +1048,7 @@
10481048
}
10491049
}
10501050
},
1051-
"revision": "20250820",
1051+
"revision": "20250908",
10521052
"rootUrl": "https://documentai.googleapis.com/",
10531053
"schemas": {
10541054
"CloudAiDocumentaiLabHifiaToolsValidationValidatorInput": {

documentai/v1/documentai-gen.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)