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
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-clouderrorreporting</artifactId>
<version>v1beta1-rev20260529-2.0.0</version>
<version>v1beta1-rev20260814-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-clouderrorreporting:v1beta1-rev20260529-2.0.0'
implementation 'com.google.apis:google-api-services-clouderrorreporting:v1beta1-rev20260814-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,21 @@ public final class ReportedErrorEvent extends com.google.api.client.json.Generic
* Required. The error message. If no `context.reportLocation` is provided, the message must
* contain a header (typically consisting of the exception type name and an error message) and an
* exception stack trace in one of the supported programming languages and formats. Supported
* languages are Java, Python, JavaScript, Ruby, C#, PHP, and Go. Supported stack trace formats
* are: * **Java**: Must be the return value of [`Throwable.printStackTrace()`](https://docs.oracl
* e.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29). * **Python**: Must be
* the return value of [`traceback.format_exc()`](https://docs.python.org/2/library/traceback.html
* #traceback.format_exc). * **JavaScript**: Must be the value of
* languages are Java, Python, JavaScript, Ruby, C#, PHP, Go, and Rust. Supported stack trace
* formats are: * **Java**: Must be the return value of [`Throwable.printStackTrace()`](https://do
* cs.oracle.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29). * **Python**:
* Must be the return value of [`traceback.format_exc()`](https://docs.python.org/2/library/traceb
* ack.html#traceback.format_exc). * **JavaScript**: Must be the value of
* [`error.stack`](https://github.com/v8/v8/wiki/Stack-Trace-API) as returned by V8. * **Ruby**:
* Must contain frames returned by [`Exception.backtrace`](https://ruby-
* doc.org/core-2.2.0/Exception.html#method-i-backtrace). * **C#**: Must be the return value of
* [`Exception.ToString()`](https://msdn.microsoft.com/en-
* us/library/system.exception.tostring.aspx). * **PHP**: Must be prefixed with `"PHP
* (Notice|Parse error|Fatal error|Warning): "` and contain the result of
* [`(string)$exception`](https://php.net/manual/en/exception.tostring.php). * **Go**: Must be the
* return value of [`debug.Stack()`](https://pkg.go.dev/runtime/debug#Stack).
* return value of [`debug.Stack()`](https://pkg.go.dev/runtime/debug#Stack). * **Rust**: Must
* contain standard [`std::backtrace`](https://doc.rust-lang.org/std/backtrace/index.html) frames.
* Requires `RUST_BACKTRACE=1` and debug symbols enabled.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -122,19 +124,21 @@ public ReportedErrorEvent setEventTime(String eventTime) {
* Required. The error message. If no `context.reportLocation` is provided, the message must
* contain a header (typically consisting of the exception type name and an error message) and an
* exception stack trace in one of the supported programming languages and formats. Supported
* languages are Java, Python, JavaScript, Ruby, C#, PHP, and Go. Supported stack trace formats
* are: * **Java**: Must be the return value of [`Throwable.printStackTrace()`](https://docs.oracl
* e.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29). * **Python**: Must be
* the return value of [`traceback.format_exc()`](https://docs.python.org/2/library/traceback.html
* #traceback.format_exc). * **JavaScript**: Must be the value of
* languages are Java, Python, JavaScript, Ruby, C#, PHP, Go, and Rust. Supported stack trace
* formats are: * **Java**: Must be the return value of [`Throwable.printStackTrace()`](https://do
* cs.oracle.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29). * **Python**:
* Must be the return value of [`traceback.format_exc()`](https://docs.python.org/2/library/traceb
* ack.html#traceback.format_exc). * **JavaScript**: Must be the value of
* [`error.stack`](https://github.com/v8/v8/wiki/Stack-Trace-API) as returned by V8. * **Ruby**:
* Must contain frames returned by [`Exception.backtrace`](https://ruby-
* doc.org/core-2.2.0/Exception.html#method-i-backtrace). * **C#**: Must be the return value of
* [`Exception.ToString()`](https://msdn.microsoft.com/en-
* us/library/system.exception.tostring.aspx). * **PHP**: Must be prefixed with `"PHP
* (Notice|Parse error|Fatal error|Warning): "` and contain the result of
* [`(string)$exception`](https://php.net/manual/en/exception.tostring.php). * **Go**: Must be the
* return value of [`debug.Stack()`](https://pkg.go.dev/runtime/debug#Stack).
* return value of [`debug.Stack()`](https://pkg.go.dev/runtime/debug#Stack). * **Rust**: Must
* contain standard [`std::backtrace`](https://doc.rust-lang.org/std/backtrace/index.html) frames.
* Requires `RUST_BACKTRACE=1` and debug symbols enabled.
* @return value or {@code null} for none
*/
public java.lang.String getMessage() {
Expand All @@ -145,19 +149,21 @@ public java.lang.String getMessage() {
* Required. The error message. If no `context.reportLocation` is provided, the message must
* contain a header (typically consisting of the exception type name and an error message) and an
* exception stack trace in one of the supported programming languages and formats. Supported
* languages are Java, Python, JavaScript, Ruby, C#, PHP, and Go. Supported stack trace formats
* are: * **Java**: Must be the return value of [`Throwable.printStackTrace()`](https://docs.oracl
* e.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29). * **Python**: Must be
* the return value of [`traceback.format_exc()`](https://docs.python.org/2/library/traceback.html
* #traceback.format_exc). * **JavaScript**: Must be the value of
* languages are Java, Python, JavaScript, Ruby, C#, PHP, Go, and Rust. Supported stack trace
* formats are: * **Java**: Must be the return value of [`Throwable.printStackTrace()`](https://do
* cs.oracle.com/javase/7/docs/api/java/lang/Throwable.html#printStackTrace%28%29). * **Python**:
* Must be the return value of [`traceback.format_exc()`](https://docs.python.org/2/library/traceb
* ack.html#traceback.format_exc). * **JavaScript**: Must be the value of
* [`error.stack`](https://github.com/v8/v8/wiki/Stack-Trace-API) as returned by V8. * **Ruby**:
* Must contain frames returned by [`Exception.backtrace`](https://ruby-
* doc.org/core-2.2.0/Exception.html#method-i-backtrace). * **C#**: Must be the return value of
* [`Exception.ToString()`](https://msdn.microsoft.com/en-
* us/library/system.exception.tostring.aspx). * **PHP**: Must be prefixed with `"PHP
* (Notice|Parse error|Fatal error|Warning): "` and contain the result of
* [`(string)$exception`](https://php.net/manual/en/exception.tostring.php). * **Go**: Must be the
* return value of [`debug.Stack()`](https://pkg.go.dev/runtime/debug#Stack).
* return value of [`debug.Stack()`](https://pkg.go.dev/runtime/debug#Stack). * **Rust**: Must
* contain standard [`std::backtrace`](https://doc.rust-lang.org/std/backtrace/index.html) frames.
* Requires `RUST_BACKTRACE=1` and debug symbols enabled.
* @param message message or {@code null} for none
*/
public ReportedErrorEvent setMessage(java.lang.String message) {
Expand Down
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-clouderrorreporting</artifactId>
<version>v1beta1-rev20260529-2.0.0</version>
<name>Error Reporting API v1beta1-rev20260529-2.0.0</name>
<version>v1beta1-rev20260814-2.0.0</version>
<name>Error Reporting API v1beta1-rev20260814-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
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-clouderrorreporting</artifactId>
<version>v1beta1-rev20260529-2.0.0</version>
<version>v1beta1-rev20260814-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-clouderrorreporting:v1beta1-rev20260529-2.0.0'
implementation 'com.google.apis:google-api-services-clouderrorreporting:v1beta1-rev20260814-2.0.0'
}
```

Expand Down
Loading