File tree Expand file tree Collapse file tree 8 files changed +22
-24
lines changed
clients/google-api-services-cloudtrace
com/google/api/services/cloudtrace/v1
com/google/api/services/cloudtrace/v2 Expand file tree Collapse file tree 8 files changed +22
-24
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-cloudtrace</artifactId >
25
- <version >v1-rev20240816 -2.0.0</version >
25
+ <version >v1-rev20250411 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20240816 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20250411 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -154,10 +154,8 @@ public Projects projects() {
154
154
public class Projects {
155
155
156
156
/**
157
- * Sends new traces to Cloud Trace or updates existing traces. If the ID of a trace that you send
158
- * matches that of an existing trace, any fields in the existing trace and its spans are overwritten
159
- * by the provided values, and any new fields provided are merged with the existing trace data. If
160
- * the ID does not match, a new trace is created.
157
+ * Sends trace spans to Cloud Trace. Spans cannot be updated. If the trace ID and span ID already
158
+ * exist, an additional copy of the span will be stored.
161
159
*
162
160
* Create a request for the method "projects.patchTraces".
163
161
*
@@ -179,10 +177,8 @@ public class PatchTraces extends CloudTraceRequest<com.google.api.services.cloud
179
177
private static final String REST_PATH = "v1/projects/{projectId}/traces" ;
180
178
181
179
/**
182
- * Sends new traces to Cloud Trace or updates existing traces. If the ID of a trace that you send
183
- * matches that of an existing trace, any fields in the existing trace and its spans are
184
- * overwritten by the provided values, and any new fields provided are merged with the existing
185
- * trace data. If the ID does not match, a new trace is created.
180
+ * Sends trace spans to Cloud Trace. Spans cannot be updated. If the trace ID and span ID already
181
+ * exist, an additional copy of the span will be stored.
186
182
*
187
183
* Create a request for the method "projects.patchTraces".
188
184
*
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<artifactId >google-api-services-cloudtrace</artifactId >
11
- <version >v1-rev20240816 -2.0.0</version >
12
- <name >Cloud Trace API v1-rev20240816 -2.0.0</name >
11
+ <version >v1-rev20250411 -2.0.0</version >
12
+ <name >Cloud Trace API v1-rev20250411 -2.0.0</name >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-cloudtrace</artifactId >
25
- <version >v1-rev20240816 -2.0.0</version >
25
+ <version >v1-rev20250411 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20240816 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20250411 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-cloudtrace</artifactId >
25
- <version >v2-rev20230511 -2.0.0</version >
25
+ <version >v2-rev20250411 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-cloudtrace:v2-rev20230511 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-cloudtrace:v2-rev20250411 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -174,7 +174,8 @@ public Traces traces() {
174
174
public class Traces {
175
175
176
176
/**
177
- * Batch writes new spans to new or existing traces. You cannot update existing spans.
177
+ * Batch writes new spans to new or existing traces. You cannot update existing spans. If a span ID
178
+ * already exists, an additional copy of the span will be stored.
178
179
*
179
180
* Create a request for the method "traces.batchWrite".
180
181
*
@@ -199,7 +200,8 @@ public class BatchWrite extends CloudTraceRequest<com.google.api.services.cloudt
199
200
java .util .regex .Pattern .compile ("^projects/[^/]+$" );
200
201
201
202
/**
202
- * Batch writes new spans to new or existing traces. You cannot update existing spans.
203
+ * Batch writes new spans to new or existing traces. You cannot update existing spans. If a span
204
+ * ID already exists, an additional copy of the span will be stored.
203
205
*
204
206
* Create a request for the method "traces.batchWrite".
205
207
*
@@ -332,7 +334,7 @@ public Spans spans() {
332
334
public class Spans {
333
335
334
336
/**
335
- * Creates a new span.
337
+ * Creates a new span. If a span ID already exists, an additional copy of the span will be stored.
336
338
*
337
339
* Create a request for the method "spans.createSpan".
338
340
*
@@ -362,7 +364,7 @@ public class CreateSpan extends CloudTraceRequest<com.google.api.services.cloudt
362
364
java .util .regex .Pattern .compile ("^projects/[^/]+/traces/[^/]+/spans/[^/]+$" );
363
365
364
366
/**
365
- * Creates a new span.
367
+ * Creates a new span. If a span ID already exists, an additional copy of the span will be stored.
366
368
*
367
369
* Create a request for the method "spans.createSpan".
368
370
*
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<artifactId >google-api-services-cloudtrace</artifactId >
11
- <version >v2-rev20230511 -2.0.0</version >
12
- <name >Cloud Trace API v2-rev20230511 -2.0.0</name >
11
+ <version >v2-rev20250411 -2.0.0</version >
12
+ <name >Cloud Trace API v2-rev20250411 -2.0.0</name >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-cloudtrace</artifactId >
25
- <version >v2-rev20230511 -2.0.0</version >
25
+ <version >v2-rev20250411 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-cloudtrace:v2-rev20230511 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-cloudtrace:v2-rev20250411 -2.0.0'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments