Skip to content

Commit 1ed2a0a

Browse files
1 parent c0ef4ba commit 1ed2a0a

File tree

4 files changed

+12
-56
lines changed

4 files changed

+12
-56
lines changed

clients/google-api-services-cloudtrace/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-cloudtrace</artifactId>
25-
<version>v1-rev20250411-2.0.0</version>
25+
<version>v1-rev20250530-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20250411-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20250530-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtrace/v1/2.0.0/com/google/api/services/cloudtrace/v1/CloudTrace.java

Lines changed: 6 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -582,66 +582,22 @@ public List setEndTime(String endTime) {
582582
}
583583

584584
/**
585-
* Optional. A filter against labels for the request. By default, searches use prefix
586-
* matching. To specify exact match, prepend a plus symbol (`+`) to the search term.
587-
* Multiple terms are ANDed. Syntax: * `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces
588-
* where any root span starts with `NAME_PREFIX`. * `+root:NAME` or `+NAME`: Return traces
589-
* where any root span's name is exactly `NAME`. * `span:NAME_PREFIX`: Return traces where
590-
* any span starts with `NAME_PREFIX`. * `+span:NAME`: Return traces where any span's name
591-
* is exactly `NAME`. * `latency:DURATION`: Return traces whose overall latency is greater
592-
* or equal to than `DURATION`. Accepted units are nanoseconds (`ns`), milliseconds (`ms`),
593-
* and seconds (`s`). Default is `ms`. For example, `latency:24ms` returns traces whose
594-
* overall latency is greater than or equal to 24 milliseconds. * `label:LABEL_KEY`: Return
595-
* all traces containing the specified label key (exact match, case-sensitive) regardless of
596-
* the key:value pair's value (including empty values). * `LABEL_KEY:VALUE_PREFIX`: Return
597-
* all traces containing the specified label key (exact match, case-sensitive) whose value
598-
* starts with `VALUE_PREFIX`. Both a key and a value must be specified. *
599-
* `+LABEL_KEY:VALUE`: Return all traces containing a key:value pair exactly matching the
600-
* specified text. Both a key and a value must be specified. * `method:VALUE`: Equivalent to
601-
* `/http/method:VALUE`. * `url:VALUE`: Equivalent to `/http/url:VALUE`.
585+
* Optional. A filter against properties of the trace. See [filter syntax
586+
* documentation](https://cloud.google.com/trace/docs/trace-filters) for details.
602587
*/
603588
@com.google.api.client.util.Key
604589
private java.lang.String filter;
605590

606-
/** Optional. A filter against labels for the request. By default, searches use prefix matching. To
607-
specify exact match, prepend a plus symbol (`+`) to the search term. Multiple terms are ANDed.
608-
Syntax: * `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces where any root span starts with
609-
`NAME_PREFIX`. * `+root:NAME` or `+NAME`: Return traces where any root span's name is exactly
610-
`NAME`. * `span:NAME_PREFIX`: Return traces where any span starts with `NAME_PREFIX`. *
611-
`+span:NAME`: Return traces where any span's name is exactly `NAME`. * `latency:DURATION`: Return
612-
traces whose overall latency is greater or equal to than `DURATION`. Accepted units are nanoseconds
613-
(`ns`), milliseconds (`ms`), and seconds (`s`). Default is `ms`. For example, `latency:24ms`
614-
returns traces whose overall latency is greater than or equal to 24 milliseconds. *
615-
`label:LABEL_KEY`: Return all traces containing the specified label key (exact match, case-
616-
sensitive) regardless of the key:value pair's value (including empty values). *
617-
`LABEL_KEY:VALUE_PREFIX`: Return all traces containing the specified label key (exact match, case-
618-
sensitive) whose value starts with `VALUE_PREFIX`. Both a key and a value must be specified. *
619-
`+LABEL_KEY:VALUE`: Return all traces containing a key:value pair exactly matching the specified
620-
text. Both a key and a value must be specified. * `method:VALUE`: Equivalent to
621-
`/http/method:VALUE`. * `url:VALUE`: Equivalent to `/http/url:VALUE`.
591+
/** Optional. A filter against properties of the trace. See [filter syntax
592+
documentation](https://cloud.google.com/trace/docs/trace-filters) for details.
622593
*/
623594
public java.lang.String getFilter() {
624595
return filter;
625596
}
626597

627598
/**
628-
* Optional. A filter against labels for the request. By default, searches use prefix
629-
* matching. To specify exact match, prepend a plus symbol (`+`) to the search term.
630-
* Multiple terms are ANDed. Syntax: * `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces
631-
* where any root span starts with `NAME_PREFIX`. * `+root:NAME` or `+NAME`: Return traces
632-
* where any root span's name is exactly `NAME`. * `span:NAME_PREFIX`: Return traces where
633-
* any span starts with `NAME_PREFIX`. * `+span:NAME`: Return traces where any span's name
634-
* is exactly `NAME`. * `latency:DURATION`: Return traces whose overall latency is greater
635-
* or equal to than `DURATION`. Accepted units are nanoseconds (`ns`), milliseconds (`ms`),
636-
* and seconds (`s`). Default is `ms`. For example, `latency:24ms` returns traces whose
637-
* overall latency is greater than or equal to 24 milliseconds. * `label:LABEL_KEY`: Return
638-
* all traces containing the specified label key (exact match, case-sensitive) regardless of
639-
* the key:value pair's value (including empty values). * `LABEL_KEY:VALUE_PREFIX`: Return
640-
* all traces containing the specified label key (exact match, case-sensitive) whose value
641-
* starts with `VALUE_PREFIX`. Both a key and a value must be specified. *
642-
* `+LABEL_KEY:VALUE`: Return all traces containing a key:value pair exactly matching the
643-
* specified text. Both a key and a value must be specified. * `method:VALUE`: Equivalent to
644-
* `/http/method:VALUE`. * `url:VALUE`: Equivalent to `/http/url:VALUE`.
599+
* Optional. A filter against properties of the trace. See [filter syntax
600+
* documentation](https://cloud.google.com/trace/docs/trace-filters) for details.
645601
*/
646602
public List setFilter(java.lang.String filter) {
647603
this.filter = filter;

clients/google-api-services-cloudtrace/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-cloudtrace</artifactId>
11-
<version>v1-rev20250411-2.0.0</version>
12-
<name>Cloud Trace API v1-rev20250411-2.0.0</name>
11+
<version>v1-rev20250530-2.0.0</version>
12+
<name>Cloud Trace API v1-rev20250530-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudtrace/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-cloudtrace</artifactId>
25-
<version>v1-rev20250411-2.0.0</version>
25+
<version>v1-rev20250530-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20250411-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20250530-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)