Skip to content

Commit

Permalink
fix(cloudtrace): update the API
Browse files Browse the repository at this point in the history
#### cloudtrace:v1

The following keys were changed:
- schemas.TraceSpan.properties.endTime.description
- schemas.TraceSpan.properties.startTime.description
  • Loading branch information
yoshi-automation authored and sofisl committed Jan 5, 2024
1 parent 2c5cbc4 commit 2a811d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/cloudtrace-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
}
}
},
"revision": "20220330",
"revision": "20240102",
"rootUrl": "https://cloudtrace.googleapis.com/",
"schemas": {
"Empty": {
Expand Down Expand Up @@ -311,7 +311,7 @@
"id": "TraceSpan",
"properties": {
"endTime": {
"description": "End time of the span in nanoseconds from the UNIX epoch.",
"description": "End time of the span in seconds and nanoseconds from the UNIX epoch.",
"format": "google-datetime",
"type": "string"
},
Expand Down Expand Up @@ -351,7 +351,7 @@
"type": "string"
},
"startTime": {
"description": "Start time of the span in nanoseconds from the UNIX epoch.",
"description": "Start time of the span in seconds and nanoseconds from the UNIX epoch.",
"format": "google-datetime",
"type": "string"
}
Expand Down
4 changes: 2 additions & 2 deletions src/apis/cloudtrace/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export namespace cloudtrace_v1 {
*/
export interface Schema$TraceSpan {
/**
* End time of the span in nanoseconds from the UNIX epoch.
* End time of the span in seconds and nanoseconds from the UNIX epoch.
*/
endTime?: string | null;
/**
Expand All @@ -196,7 +196,7 @@ export namespace cloudtrace_v1 {
*/
spanId?: string | null;
/**
* Start time of the span in nanoseconds from the UNIX epoch.
* Start time of the span in seconds and nanoseconds from the UNIX epoch.
*/
startTime?: string | null;
}
Expand Down

0 comments on commit 2a811d5

Please sign in to comment.