Skip to content

Commit

Permalink
feat: run generator (02-17-2022) (#324)
Browse files Browse the repository at this point in the history
Co-authored-by: Google Bot <yoshi-code-bot@google.com>
  • Loading branch information
github-actions[bot] and yoshi-code-bot authored Feb 17, 2022
1 parent a80acfd commit f475043
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions jsonschema/google/events/cloud/audit/v1/LogEntryData.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@
"spanId": {
"type": "string",
"description": "The span ID within the trace associated with the log entry, if any.\n\n For Trace spans, this is the same format that the Trace API v2 uses: a\n 16-character hexadecimal encoding of an 8-byte array, such as\n `000000000000004a`."
},
"split": {
"$ref": "#/definitions/LogSplit",
"additionalProperties": true,
"description": "Information indicating this LogEntry is part of a sequence of multiple logs\n split from a single LogEntry."
}
},
"additionalProperties": true,
Expand Down Expand Up @@ -275,6 +280,25 @@
"type": "object",
"description": "Additional information about a potentially long-running operation with which\n a log entry is associated."
},
"LogSplit": {
"properties": {
"uid": {
"type": "string",
"description": "A globally unique identifier for all LogEntries in a sequence of split\n logs. All LogEntries with the same |LogSplit.uid| are assumed to be part of\n the same sequence of split logs."
},
"index": {
"type": "integer",
"description": "The index of this LogEntry in the sequence of split logs. LogEntries are\n given |index| values 0, 1, ..., n-1 for a sequence of n entries."
},
"totalSplits": {
"type": "integer",
"description": "The total number of logs that the original LogEntry was split into."
}
},
"additionalProperties": true,
"type": "object",
"description": "Additional information used to correlate multiple LogEntries. Used when a\n single LogEntry would exceed the Google Cloud Logging size limit and is split\n across multiple entries."
},
"RequestMetadata": {
"properties": {
"callerIp": {
Expand Down

0 comments on commit f475043

Please sign in to comment.