Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 116 additions & 7 deletions containeranalysis/v1beta1/containeranalysis-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1771,7 +1771,7 @@
}
}
},
"revision": "20250829",
"revision": "20250905",
"rootUrl": "https://containeranalysis.googleapis.com/",
"schemas": {
"AliasContext": {
Expand Down Expand Up @@ -4458,7 +4458,8 @@
"SPDX_FILE",
"SPDX_RELATIONSHIP",
"VULNERABILITY_ASSESSMENT",
"SBOM_REFERENCE"
"SBOM_REFERENCE",
"SECRET"
],
"enumDescriptions": [
"Default value. This value is unused.",
Expand All @@ -4475,7 +4476,8 @@
"This represents an SPDX File.",
"This represents an SPDX Relationship.",
"This represents a Vulnerability Assessment.",
"This represents an SBOM Reference."
"This represents an SBOM Reference.",
"This represents a secret."
],
"type": "string"
}
Expand Down Expand Up @@ -4746,6 +4748,17 @@
},
"type": "object"
},
"FileLocation": {
"description": "Indicates the location at which a package was found.",
"id": "FileLocation",
"properties": {
"filePath": {
"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.",
"type": "string"
}
},
"type": "object"
},
"FileNote": {
"description": "FileNote represents an SPDX File Information section: https://spdx.github.io/spdx-spec/4-file-information/",
"id": "FileNote",
Expand Down Expand Up @@ -5698,7 +5711,8 @@
"SPDX_FILE",
"SPDX_RELATIONSHIP",
"VULNERABILITY_ASSESSMENT",
"SBOM_REFERENCE"
"SBOM_REFERENCE",
"SECRET"
],
"enumDescriptions": [
"Default value. This value is unused.",
Expand All @@ -5715,7 +5729,8 @@
"This represents an SPDX File.",
"This represents an SPDX Relationship.",
"This represents a Vulnerability Assessment.",
"This represents an SBOM Reference."
"This represents an SBOM Reference.",
"This represents a secret."
],
"type": "string"
},
Expand Down Expand Up @@ -5753,6 +5768,10 @@
"$ref": "SBOMReferenceNote",
"description": "A note describing an SBOM reference."
},
"secret": {
"$ref": "SecretNote",
"description": "A note describing a secret."
},
"shortDescription": {
"description": "A one sentence description of this note.",
"type": "string"
Expand Down Expand Up @@ -5843,7 +5862,8 @@
"SPDX_FILE",
"SPDX_RELATIONSHIP",
"VULNERABILITY_ASSESSMENT",
"SBOM_REFERENCE"
"SBOM_REFERENCE",
"SECRET"
],
"enumDescriptions": [
"Default value. This value is unused.",
Expand All @@ -5860,7 +5880,8 @@
"This represents an SPDX File.",
"This represents an SPDX Relationship.",
"This represents a Vulnerability Assessment.",
"This represents an SBOM Reference."
"This represents an SBOM Reference.",
"This represents a secret."
],
"type": "string"
},
Expand Down Expand Up @@ -5888,6 +5909,10 @@
"$ref": "SBOMReferenceOccurrence",
"description": "Describes a specific SBOM reference occurrences."
},
"secret": {
"$ref": "SecretOccurrence",
"description": "Describes a secret."
},
"spdxFile": {
"$ref": "FileOccurrence",
"description": "Describes a specific SPDX File."
Expand Down Expand Up @@ -6770,6 +6795,90 @@
},
"type": "object"
},
"SecretLocation": {
"description": "The location of the secret.",
"id": "SecretLocation",
"properties": {
"fileLocation": {
"$ref": "FileLocation",
"description": "The secret is found from a file."
}
},
"type": "object"
},
"SecretNote": {
"description": "The note representing a secret.",
"id": "SecretNote",
"properties": {},
"type": "object"
},
"SecretOccurrence": {
"description": "The occurrence provides details of a secret.",
"id": "SecretOccurrence",
"properties": {
"kind": {
"description": "Required. Type of secret.",
"enum": [
"SECRET_KIND_UNSPECIFIED",
"SECRET_KIND_UNKNOWN",
"SECRET_KIND_GCP_SERVICE_ACCOUNT_KEY"
],
"enumDescriptions": [
"Unspecified",
"The secret kind is unknown.",
"A GCP service account key per: https://cloud.google.com/iam/docs/creating-managing-service-account-keys"
],
"type": "string"
},
"locations": {
"description": "Optional. Locations where the secret is detected.",
"items": {
"$ref": "SecretLocation"
},
"type": "array"
},
"statuses": {
"description": "Optional. Status of the secret.",
"items": {
"$ref": "SecretStatus"
},
"type": "array"
}
},
"type": "object"
},
"SecretStatus": {
"description": "The status of the secret with a timestamp.",
"id": "SecretStatus",
"properties": {
"message": {
"description": "Optional. Optional message about the status code.",
"type": "string"
},
"status": {
"description": "Optional. The status of the secret.",
"enum": [
"STATUS_UNSPECIFIED",
"UNKNOWN",
"VALID",
"INVALID"
],
"enumDescriptions": [
"Unspecified",
"The status of the secret is unknown.",
"The secret is valid.",
"The secret is invalid."
],
"type": "string"
},
"updateTime": {
"description": "Optional. The time the secret status was last updated.",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
},
"SetIamPolicyRequest": {
"description": "Request message for `SetIamPolicy` method.",
"id": "SetIamPolicyRequest",
Expand Down
120 changes: 120 additions & 0 deletions containeranalysis/v1beta1/containeranalysis-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions documentai/v1/documentai-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
"location": "query",
"repeated": true,
"type": "string"
Expand Down Expand Up @@ -1048,7 +1048,7 @@
}
}
},
"revision": "20250820",
"revision": "20250908",
"rootUrl": "https://documentai.googleapis.com/",
"schemas": {
"CloudAiDocumentaiLabHifiaToolsValidationValidatorInput": {
Expand Down
6 changes: 3 additions & 3 deletions documentai/v1/documentai-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading