@maxim_mazurok/gapi.client.cloudtrace-v1 0.1.20260717 → 0.1.20260724

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.
Files changed (2) hide show
  1. package/index.d.ts +12 -12
  2. 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: 20260717
12
+ // Revision: 20260724
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -32,11 +32,11 @@ declare namespace gapi.client {
32
32
  traces?: Trace[];
33
33
  }
34
34
  interface Trace {
35
- /** Project ID of the Cloud project where the trace data is stored. */
35
+ /** Required. Project ID of the Cloud project where the trace data is stored. */
36
36
  projectId?: string;
37
37
  /** Collection of spans in the trace. */
38
38
  spans?: TraceSpan[];
39
- /** Globally unique identifier for the trace. This identifier is a 128-bit numeric value formatted as a 32-byte hex string. For example, `382d4f4c6b7bb2f4a972559d9085001d`. The numeric value should not be zero. */
39
+ /** Required. Globally unique identifier for the trace. This identifier is a 128-bit numeric value formatted as a 32-byte hex string. For example, `382d4f4c6b7bb2f4a972559d9085001d`. The numeric value should not be zero. */
40
40
  traceId?: string;
41
41
  }
42
42
  interface Traces {
@@ -44,19 +44,19 @@ declare namespace gapi.client {
44
44
  traces?: Trace[];
45
45
  }
46
46
  interface TraceSpan {
47
- /** End time of the span in seconds and nanoseconds from the UNIX epoch. */
47
+ /** Required. End time of the span in seconds and nanoseconds from the UNIX epoch. */
48
48
  endTime?: string;
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. */
49
+ /** Optional. 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?: 'SPAN_KIND_UNSPECIFIED' | 'RPC_SERVER' | 'RPC_CLIENT';
51
- /** Collection of labels associated with the span. Label keys must be less than 128 bytes. Label values must be less than 16 KiB. Some keys might have predefined meaning, and you can also create your own. For more information, see [Cloud Trace labels](https://cloud.google.com/trace/docs/trace-labels). */
51
+ /** Optional. Collection of labels associated with the span. Label keys must be less than 128 bytes. Label values must be less than 16 KiB. Some keys might have predefined meaning, and you can also create your own. For more information, see [Cloud Trace labels](https://cloud.google.com/trace/docs/trace-labels). */
52
52
  labels?: {[P in string]: string};
53
- /** Name of the span. Must be less than 128 bytes. The span name is sanitized and displayed in the Trace tool in the Google Cloud Platform Console. The name may be a method name or some other per-call site name. For the same executable and the same call point, a best practice is to use a consistent name, which makes it easier to correlate cross-trace spans. */
53
+ /** Required. Name of the span. Must be less than 128 bytes. The span name is sanitized and displayed in the Trace tool in the Google Cloud Platform Console. The name may be a method name or some other per-call site name. For the same executable and the same call point, a best practice is to use a consistent name, which makes it easier to correlate cross-trace spans. */
54
54
  name?: string;
55
55
  /** Optional. ID of the parent span, if any. */
56
56
  parentSpanId?: string;
57
- /** Identifier for the span. Must be a 64-bit integer other than 0 and unique within a trace. For example, `2205310701640571284`. */
57
+ /** Required. 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 seconds and nanoseconds from the UNIX epoch. */
59
+ /** Required. Start time of the span in seconds and nanoseconds from the UNIX epoch. */
60
60
  startTime?: string;
61
61
  }
62
62
  interface TracesResource {
@@ -99,7 +99,7 @@ declare namespace gapi.client {
99
99
  alt?: 'json' | 'media' | 'proto';
100
100
  /** JSONP */
101
101
  callback?: string;
102
- /** End of the time interval (inclusive) during which the trace data was collected from the application. */
102
+ /** Required. End of the time interval (inclusive) during which the trace data was collected from the application. */
103
103
  endTime?: string;
104
104
  /** Selector specifying which fields to include in a partial response. */
105
105
  fields?: string;
@@ -113,7 +113,7 @@ declare namespace gapi.client {
113
113
  orderBy?: string;
114
114
  /** Optional. Maximum number of traces to return. If not specified or <= 0, the implementation selects a reasonable value. The implementation may return fewer traces than the requested page size. */
115
115
  pageSize?: number;
116
- /** Token identifying the page of results to return. If provided, use the value of the `next_page_token` field from a previous request. */
116
+ /** Optional. Token identifying the page of results to return. If provided, use the value of the `next_page_token` field from a previous request. */
117
117
  pageToken?: string;
118
118
  /** Returns response with indentations and line breaks. */
119
119
  prettyPrint?: boolean;
@@ -121,7 +121,7 @@ declare namespace gapi.client {
121
121
  projectId: string;
122
122
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
123
123
  quotaUser?: string;
124
- /** Start of the time interval (inclusive) during which the trace data was collected from the application. */
124
+ /** Required. Start of the time interval (inclusive) during which the trace data was collected from the application. */
125
125
  startTime?: string;
126
126
  /** Upload protocol for media (e.g. "raw", "multipart"). */
127
127
  upload_protocol?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.cloudtrace-v1",
3
- "version": "0.1.20260717",
3
+ "version": "0.1.20260724",
4
4
  "description": "TypeScript typings for Cloud Trace API v1",
5
5
  "repository": {
6
6
  "type": "git",