@maxim_mazurok/gapi.client.cloudtrace-v1 0.0.20231130 → 0.0.20240102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://cloudtrace.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240102
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -44,7 +44,7 @@ declare namespace gapi.client {
|
|
|
44
44
|
traces?: Trace[];
|
|
45
45
|
}
|
|
46
46
|
interface TraceSpan {
|
|
47
|
-
/** End time of the span in nanoseconds from the UNIX epoch. */
|
|
47
|
+
/** End time of the span in seconds and nanoseconds from the UNIX epoch. */
|
|
48
48
|
endTime?: string;
|
|
49
49
|
/** Distinguishes between spans generated in a particular context. For example, two spans with the same name may be distinguished using `RPC_CLIENT` and `RPC_SERVER` to identify queueing latency associated with the span. */
|
|
50
50
|
kind?: string;
|
|
@@ -56,7 +56,7 @@ declare namespace gapi.client {
|
|
|
56
56
|
parentSpanId?: string;
|
|
57
57
|
/** Identifier for the span. Must be a 64-bit integer other than 0 and unique within a trace. For example, `2205310701640571284`. */
|
|
58
58
|
spanId?: string;
|
|
59
|
-
/** Start time of the span in nanoseconds from the UNIX epoch. */
|
|
59
|
+
/** Start time of the span in seconds and nanoseconds from the UNIX epoch. */
|
|
60
60
|
startTime?: string;
|
|
61
61
|
}
|
|
62
62
|
interface TracesResource {
|