Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudtrace/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudtrace</artifactId>
<version>v1-rev20260612-2.0.0</version>
<version>v1-rev20260724-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20260612-2.0.0'
implementation 'com.google.apis:google-api-services-cloudtrace:v1-rev20260724-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -559,22 +559,22 @@ public List setProjectId(java.lang.String projectId) {
}

/**
* End of the time interval (inclusive) during which the trace data was collected from the
* application.
* Required. End of the time interval (inclusive) during which the trace data was collected
* from the application.
*/
@com.google.api.client.util.Key
private String endTime;

/** End of the time interval (inclusive) during which the trace data was collected from the
/** Required. End of the time interval (inclusive) during which the trace data was collected from the
application.
*/
public String getEndTime() {
return endTime;
}

/**
* End of the time interval (inclusive) during which the trace data was collected from the
* application.
* Required. End of the time interval (inclusive) during which the trace data was collected
* from the application.
*/
public List setEndTime(String endTime) {
this.endTime = endTime;
Expand Down Expand Up @@ -662,45 +662,45 @@ public List setPageSize(java.lang.Integer pageSize) {
}

/**
* Token identifying the page of results to return. If provided, use the value of the
* `next_page_token` field from a previous request.
* Optional. Token identifying the page of results to return. If provided, use the value of
* the `next_page_token` field from a previous request.
*/
@com.google.api.client.util.Key
private java.lang.String pageToken;

/** Token identifying the page of results to return. If provided, use the value of the
/** Optional. Token identifying the page of results to return. If provided, use the value of the
`next_page_token` field from a previous request.
*/
public java.lang.String getPageToken() {
return pageToken;
}

/**
* Token identifying the page of results to return. If provided, use the value of the
* `next_page_token` field from a previous request.
* Optional. Token identifying the page of results to return. If provided, use the value of
* the `next_page_token` field from a previous request.
*/
public List setPageToken(java.lang.String pageToken) {
this.pageToken = pageToken;
return this;
}

/**
* Start of the time interval (inclusive) during which the trace data was collected from the
* application.
* Required. Start of the time interval (inclusive) during which the trace data was
* collected from the application.
*/
@com.google.api.client.util.Key
private String startTime;

/** Start of the time interval (inclusive) during which the trace data was collected from the
/** Required. Start of the time interval (inclusive) during which the trace data was collected from the
application.
*/
public String getStartTime() {
return startTime;
}

/**
* Start of the time interval (inclusive) during which the trace data was collected from the
* application.
* Required. Start of the time interval (inclusive) during which the trace data was
* collected from the application.
*/
public List setStartTime(String startTime) {
this.startTime = startTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public final class Trace extends com.google.api.client.json.GenericJson {

/**
* Project ID of the Cloud project where the trace data is stored.
* Required. Project ID of the Cloud project where the trace data is stored.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -45,24 +45,24 @@ public final class Trace extends com.google.api.client.json.GenericJson {
private java.util.List<TraceSpan> spans;

/**
* 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.
* 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.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String traceId;

/**
* Project ID of the Cloud project where the trace data is stored.
* Required. Project ID of the Cloud project where the trace data is stored.
* @return value or {@code null} for none
*/
public java.lang.String getProjectId() {
return projectId;
}

/**
* Project ID of the Cloud project where the trace data is stored.
* Required. Project ID of the Cloud project where the trace data is stored.
* @param projectId projectId or {@code null} for none
*/
public Trace setProjectId(java.lang.String projectId) {
Expand All @@ -88,19 +88,19 @@ public Trace setSpans(java.util.List<TraceSpan> spans) {
}

/**
* 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.
* 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.
* @return value or {@code null} for none
*/
public java.lang.String getTraceId() {
return traceId;
}

/**
* 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.
* 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.
* @param traceId traceId or {@code null} for none
*/
public Trace setTraceId(java.lang.String traceId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,36 +33,36 @@
public final class TraceSpan extends com.google.api.client.json.GenericJson {

/**
* End time of the span in seconds and nanoseconds from the UNIX epoch.
* Required. End time of the span in seconds and nanoseconds from the UNIX epoch.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String endTime;

/**
* 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.
* 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.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;

/**
* 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
* 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).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.String> labels;

/**
* 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.
* 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.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -76,30 +76,30 @@ public final class TraceSpan extends com.google.api.client.json.GenericJson {
private java.math.BigInteger parentSpanId;

/**
* Identifier for the span. Must be a 64-bit integer other than 0 and unique within a trace. For
* example, `2205310701640571284`.
* Required. Identifier for the span. Must be a 64-bit integer other than 0 and unique within a
* trace. For example, `2205310701640571284`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.math.BigInteger spanId;

/**
* Start time of the span in seconds and nanoseconds from the UNIX epoch.
* Required. Start time of the span in seconds and nanoseconds from the UNIX epoch.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String startTime;

/**
* End time of the span in seconds and nanoseconds from the UNIX epoch.
* Required. End time of the span in seconds and nanoseconds from the UNIX epoch.
* @return value or {@code null} for none
*/
public String getEndTime() {
return endTime;
}

/**
* End time of the span in seconds and nanoseconds from the UNIX epoch.
* Required. End time of the span in seconds and nanoseconds from the UNIX epoch.
* @param endTime endTime or {@code null} for none
*/
public TraceSpan setEndTime(String endTime) {
Expand All @@ -108,19 +108,19 @@ public TraceSpan setEndTime(String endTime) {
}

/**
* 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.
* 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.
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}

/**
* 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.
* 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.
* @param kind kind or {@code null} for none
*/
public TraceSpan setKind(java.lang.String kind) {
Expand All @@ -129,9 +129,9 @@ public TraceSpan setKind(java.lang.String kind) {
}

/**
* 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
* 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).
* @return value or {@code null} for none
*/
Expand All @@ -140,9 +140,9 @@ public java.util.Map<String, java.lang.String> getLabels() {
}

/**
* 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
* 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).
* @param labels labels or {@code null} for none
*/
Expand All @@ -152,21 +152,21 @@ public TraceSpan setLabels(java.util.Map<String, java.lang.String> labels) {
}

/**
* 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.
* 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.
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}

/**
* 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.
* 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.
* @param name name or {@code null} for none
*/
public TraceSpan setName(java.lang.String name) {
Expand All @@ -192,17 +192,17 @@ public TraceSpan setParentSpanId(java.math.BigInteger parentSpanId) {
}

/**
* Identifier for the span. Must be a 64-bit integer other than 0 and unique within a trace. For
* example, `2205310701640571284`.
* Required. Identifier for the span. Must be a 64-bit integer other than 0 and unique within a
* trace. For example, `2205310701640571284`.
* @return value or {@code null} for none
*/
public java.math.BigInteger getSpanId() {
return spanId;
}

/**
* Identifier for the span. Must be a 64-bit integer other than 0 and unique within a trace. For
* example, `2205310701640571284`.
* Required. Identifier for the span. Must be a 64-bit integer other than 0 and unique within a
* trace. For example, `2205310701640571284`.
* @param spanId spanId or {@code null} for none
*/
public TraceSpan setSpanId(java.math.BigInteger spanId) {
Expand All @@ -211,15 +211,15 @@ public TraceSpan setSpanId(java.math.BigInteger spanId) {
}

/**
* Start time of the span in seconds and nanoseconds from the UNIX epoch.
* Required. Start time of the span in seconds and nanoseconds from the UNIX epoch.
* @return value or {@code null} for none
*/
public String getStartTime() {
return startTime;
}

/**
* Start time of the span in seconds and nanoseconds from the UNIX epoch.
* Required. Start time of the span in seconds and nanoseconds from the UNIX epoch.
* @param startTime startTime or {@code null} for none
*/
public TraceSpan setStartTime(String startTime) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudtrace/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudtrace</artifactId>
<version>v1-rev20260612-2.0.0</version>
<name>Cloud Trace API v1-rev20260612-2.0.0</name>
<version>v1-rev20260724-2.0.0</version>
<name>Cloud Trace API v1-rev20260724-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Loading
Loading