From 8e9d055e9c7b8dc425e01a7004de4af2e24326d9 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Fri, 30 Jan 2026 18:21:06 -0800 Subject: [PATCH] chore: regenerate logging client --- .../v2/2.0.0/README.md | 4 +- .../services/logging/v2/model/LogEntry.java | 108 +++++++++--------- .../v2/2.0.0/pom.xml | 4 +- .../google-api-services-logging/v2/README.md | 4 +- 4 files changed, 60 insertions(+), 60 deletions(-) diff --git a/clients/google-api-services-logging/v2/2.0.0/README.md b/clients/google-api-services-logging/v2/2.0.0/README.md index f4c9638f52e..7781a389fd1 100644 --- a/clients/google-api-services-logging/v2/2.0.0/README.md +++ b/clients/google-api-services-logging/v2/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-logging - v2-rev20260116-2.0.0 + v2-rev20260123-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-logging:v2-rev20260116-2.0.0' + implementation 'com.google.apis:google-api-services-logging:v2-rev20260123-2.0.0' } ``` diff --git a/clients/google-api-services-logging/v2/2.0.0/com/google/api/services/logging/v2/model/LogEntry.java b/clients/google-api-services-logging/v2/2.0.0/com/google/api/services/logging/v2/model/LogEntry.java index 598fd3b5aff..c5fe170c60f 100644 --- a/clients/google-api-services-logging/v2/2.0.0/com/google/api/services/logging/v2/model/LogEntry.java +++ b/clients/google-api-services-logging/v2/2.0.0/com/google/api/services/logging/v2/model/LogEntry.java @@ -179,22 +179,20 @@ public final class LogEntry extends com.google.api.client.json.GenericJson { private LogEntrySourceLocation sourceLocation; /** - * Optional. The ID of the Cloud Trace (https://cloud.google.com/trace) span associated with the - * current operation in which the log is being written. For example, if a span has the REST - * resource name of "projects/some-project/traces/some-trace/spans/some-span-id", then the span_id - * field is "some-span-id".A Span - * (https://cloud.google.com/trace/docs/reference/v2/rest/v2/projects.traces/batchWrite#Span) + * Optional. The ID of the Cloud Trace (https://docs.cloud.google.com/trace/docs) span associated + * with the current operation in which the log is being written.A Span + * (https://docs.cloud.google.com/trace/docs/reference/v2/rest/v2/projects.traces/batchWrite#Span) * represents a single operation within a trace. Whereas a trace may involve multiple different * microservices running on multiple different machines, a span generally corresponds to a single * logical operation being performed in a single instance of a microservice on one specific * machine. Spans are the nodes within the tree that is a trace.Applications that are instrumented - * for tracing (https://cloud.google.com/trace/docs/setup) will generally assign a new, unique - * span ID on each incoming request. It is also common to create and record additional spans - * corresponding to internal processing elements as well as issuing requests to dependencies.The - * span ID is expected to be a 16-character, hexadecimal encoding of an 8-byte array and should - * not be zero. It should be unique within the trace and should, ideally, be generated in a manner - * that is uniformly random.Example values: 000000000000004a 7a2190356c3fc94b 0000f00300090021 - * d39223e101960076 + * for tracing (https://docs.cloud.google.com/trace/docs/setup) will generally assign a new, + * unique span ID on each incoming request. It is also common to create and record additional + * spans corresponding to internal processing elements as well as issuing requests to + * dependencies.The span ID is expected to be a 16-character, hexadecimal encoding of an 8-byte + * array and should not be zero. It should be unique within the trace and should, ideally, be + * generated in a manner that is uniformly random.Example values: 000000000000004a + * 7a2190356c3fc94b 0000f00300090021 d39223e101960076 * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -230,12 +228,14 @@ public final class LogEntry extends com.google.api.client.json.GenericJson { private String timestamp; /** - * Optional. The REST resource name of the trace being written to Cloud Trace - * (https://cloud.google.com/trace) in association with this log entry. For example, if your trace - * data is stored in the Cloud project "my-trace-project" and if the service that is creating the - * log entry receives a trace header that includes the trace ID "12345", then the service should - * use "projects/my-trace-project/traces/12345".The trace field provides the link between logs and - * traces. By using this field, you can navigate from a log entry to a trace. + * Optional. The trace ID being written to Cloud Trace (https://docs.cloud.google.com/trace/docs) + * in association with this log entry. For example, if your trace data is stored in the Cloud + * project "my-trace-project" and if the service that is creating the log entry receives a trace + * header that includes the trace ID "12345", then the service should use "12345".The REST + * resource name of the trace is also supported, but using this format is not recommended. An + * example trace REST resource name is similar to "projects/my-trace-project/traces/12345".The + * trace field provides the link between logs and traces. By using this field, you can navigate + * from a log entry to a trace. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -598,22 +598,20 @@ public LogEntry setSourceLocation(LogEntrySourceLocation sourceLocation) { } /** - * Optional. The ID of the Cloud Trace (https://cloud.google.com/trace) span associated with the - * current operation in which the log is being written. For example, if a span has the REST - * resource name of "projects/some-project/traces/some-trace/spans/some-span-id", then the span_id - * field is "some-span-id".A Span - * (https://cloud.google.com/trace/docs/reference/v2/rest/v2/projects.traces/batchWrite#Span) + * Optional. The ID of the Cloud Trace (https://docs.cloud.google.com/trace/docs) span associated + * with the current operation in which the log is being written.A Span + * (https://docs.cloud.google.com/trace/docs/reference/v2/rest/v2/projects.traces/batchWrite#Span) * represents a single operation within a trace. Whereas a trace may involve multiple different * microservices running on multiple different machines, a span generally corresponds to a single * logical operation being performed in a single instance of a microservice on one specific * machine. Spans are the nodes within the tree that is a trace.Applications that are instrumented - * for tracing (https://cloud.google.com/trace/docs/setup) will generally assign a new, unique - * span ID on each incoming request. It is also common to create and record additional spans - * corresponding to internal processing elements as well as issuing requests to dependencies.The - * span ID is expected to be a 16-character, hexadecimal encoding of an 8-byte array and should - * not be zero. It should be unique within the trace and should, ideally, be generated in a manner - * that is uniformly random.Example values: 000000000000004a 7a2190356c3fc94b 0000f00300090021 - * d39223e101960076 + * for tracing (https://docs.cloud.google.com/trace/docs/setup) will generally assign a new, + * unique span ID on each incoming request. It is also common to create and record additional + * spans corresponding to internal processing elements as well as issuing requests to + * dependencies.The span ID is expected to be a 16-character, hexadecimal encoding of an 8-byte + * array and should not be zero. It should be unique within the trace and should, ideally, be + * generated in a manner that is uniformly random.Example values: 000000000000004a + * 7a2190356c3fc94b 0000f00300090021 d39223e101960076 * @return value or {@code null} for none */ public java.lang.String getSpanId() { @@ -621,22 +619,20 @@ public java.lang.String getSpanId() { } /** - * Optional. The ID of the Cloud Trace (https://cloud.google.com/trace) span associated with the - * current operation in which the log is being written. For example, if a span has the REST - * resource name of "projects/some-project/traces/some-trace/spans/some-span-id", then the span_id - * field is "some-span-id".A Span - * (https://cloud.google.com/trace/docs/reference/v2/rest/v2/projects.traces/batchWrite#Span) + * Optional. The ID of the Cloud Trace (https://docs.cloud.google.com/trace/docs) span associated + * with the current operation in which the log is being written.A Span + * (https://docs.cloud.google.com/trace/docs/reference/v2/rest/v2/projects.traces/batchWrite#Span) * represents a single operation within a trace. Whereas a trace may involve multiple different * microservices running on multiple different machines, a span generally corresponds to a single * logical operation being performed in a single instance of a microservice on one specific * machine. Spans are the nodes within the tree that is a trace.Applications that are instrumented - * for tracing (https://cloud.google.com/trace/docs/setup) will generally assign a new, unique - * span ID on each incoming request. It is also common to create and record additional spans - * corresponding to internal processing elements as well as issuing requests to dependencies.The - * span ID is expected to be a 16-character, hexadecimal encoding of an 8-byte array and should - * not be zero. It should be unique within the trace and should, ideally, be generated in a manner - * that is uniformly random.Example values: 000000000000004a 7a2190356c3fc94b 0000f00300090021 - * d39223e101960076 + * for tracing (https://docs.cloud.google.com/trace/docs/setup) will generally assign a new, + * unique span ID on each incoming request. It is also common to create and record additional + * spans corresponding to internal processing elements as well as issuing requests to + * dependencies.The span ID is expected to be a 16-character, hexadecimal encoding of an 8-byte + * array and should not be zero. It should be unique within the trace and should, ideally, be + * generated in a manner that is uniformly random.Example values: 000000000000004a + * 7a2190356c3fc94b 0000f00300090021 d39223e101960076 * @param spanId spanId or {@code null} for none */ public LogEntry setSpanId(java.lang.String spanId) { @@ -712,12 +708,14 @@ public LogEntry setTimestamp(String timestamp) { } /** - * Optional. The REST resource name of the trace being written to Cloud Trace - * (https://cloud.google.com/trace) in association with this log entry. For example, if your trace - * data is stored in the Cloud project "my-trace-project" and if the service that is creating the - * log entry receives a trace header that includes the trace ID "12345", then the service should - * use "projects/my-trace-project/traces/12345".The trace field provides the link between logs and - * traces. By using this field, you can navigate from a log entry to a trace. + * Optional. The trace ID being written to Cloud Trace (https://docs.cloud.google.com/trace/docs) + * in association with this log entry. For example, if your trace data is stored in the Cloud + * project "my-trace-project" and if the service that is creating the log entry receives a trace + * header that includes the trace ID "12345", then the service should use "12345".The REST + * resource name of the trace is also supported, but using this format is not recommended. An + * example trace REST resource name is similar to "projects/my-trace-project/traces/12345".The + * trace field provides the link between logs and traces. By using this field, you can navigate + * from a log entry to a trace. * @return value or {@code null} for none */ public java.lang.String getTrace() { @@ -725,12 +723,14 @@ public java.lang.String getTrace() { } /** - * Optional. The REST resource name of the trace being written to Cloud Trace - * (https://cloud.google.com/trace) in association with this log entry. For example, if your trace - * data is stored in the Cloud project "my-trace-project" and if the service that is creating the - * log entry receives a trace header that includes the trace ID "12345", then the service should - * use "projects/my-trace-project/traces/12345".The trace field provides the link between logs and - * traces. By using this field, you can navigate from a log entry to a trace. + * Optional. The trace ID being written to Cloud Trace (https://docs.cloud.google.com/trace/docs) + * in association with this log entry. For example, if your trace data is stored in the Cloud + * project "my-trace-project" and if the service that is creating the log entry receives a trace + * header that includes the trace ID "12345", then the service should use "12345".The REST + * resource name of the trace is also supported, but using this format is not recommended. An + * example trace REST resource name is similar to "projects/my-trace-project/traces/12345".The + * trace field provides the link between logs and traces. By using this field, you can navigate + * from a log entry to a trace. * @param trace trace or {@code null} for none */ public LogEntry setTrace(java.lang.String trace) { diff --git a/clients/google-api-services-logging/v2/2.0.0/pom.xml b/clients/google-api-services-logging/v2/2.0.0/pom.xml index 0715895a498..7072feaccd3 100644 --- a/clients/google-api-services-logging/v2/2.0.0/pom.xml +++ b/clients/google-api-services-logging/v2/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-logging - v2-rev20260116-2.0.0 - Cloud Logging API v2-rev20260116-2.0.0 + v2-rev20260123-2.0.0 + Cloud Logging API v2-rev20260123-2.0.0 jar 2011 diff --git a/clients/google-api-services-logging/v2/README.md b/clients/google-api-services-logging/v2/README.md index f4c9638f52e..7781a389fd1 100644 --- a/clients/google-api-services-logging/v2/README.md +++ b/clients/google-api-services-logging/v2/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-logging - v2-rev20260116-2.0.0 + v2-rev20260123-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-logging:v2-rev20260116-2.0.0' + implementation 'com.google.apis:google-api-services-logging:v2-rev20260123-2.0.0' } ```