Skip to content

Commit c53a8a2

Browse files
1 parent eb7fbcf commit c53a8a2

File tree

5 files changed

+145
-6
lines changed

5 files changed

+145
-6
lines changed

clients/google-api-services-chromemanagement/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-chromemanagement</artifactId>
25-
<version>v1-rev20250417-2.0.0</version>
25+
<version>v1-rev20250526-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-chromemanagement:v1-rev20250417-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20250526-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-chromemanagement/v1/2.0.0/com/google/api/services/chromemanagement/v1/model/GoogleChromeManagementV1TelemetryEvent.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,13 @@ public final class GoogleChromeManagementV1TelemetryEvent extends com.google.api
9797
@com.google.api.client.util.Key
9898
private GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent networkStateChangeEvent;
9999

100+
/**
101+
* Output only. Payload for OS crash event. Present only when `event_type` is `OS_CRASH`.
102+
* The value may be {@code null}.
103+
*/
104+
@com.google.api.client.util.Key
105+
private GoogleChromeManagementV1TelemetryOsCrashEvent osCrashEvent;
106+
100107
/**
101108
* Timestamp that represents when the event was reported.
102109
* The value may be {@code null}.
@@ -296,6 +303,23 @@ public GoogleChromeManagementV1TelemetryEvent setNetworkStateChangeEvent(GoogleC
296303
return this;
297304
}
298305

306+
/**
307+
* Output only. Payload for OS crash event. Present only when `event_type` is `OS_CRASH`.
308+
* @return value or {@code null} for none
309+
*/
310+
public GoogleChromeManagementV1TelemetryOsCrashEvent getOsCrashEvent() {
311+
return osCrashEvent;
312+
}
313+
314+
/**
315+
* Output only. Payload for OS crash event. Present only when `event_type` is `OS_CRASH`.
316+
* @param osCrashEvent osCrashEvent or {@code null} for none
317+
*/
318+
public GoogleChromeManagementV1TelemetryEvent setOsCrashEvent(GoogleChromeManagementV1TelemetryOsCrashEvent osCrashEvent) {
319+
this.osCrashEvent = osCrashEvent;
320+
return this;
321+
}
322+
299323
/**
300324
* Timestamp that represents when the event was reported.
301325
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.chromemanagement.v1.model;
18+
19+
/**
20+
* OS crash data.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Chrome Management API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleChromeManagementV1TelemetryOsCrashEvent extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Crash id.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String crashId;
39+
40+
/**
41+
* Crash type.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String crashType;
46+
47+
/**
48+
* Session type.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String sessionType;
53+
54+
/**
55+
* Crash id.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getCrashId() {
59+
return crashId;
60+
}
61+
62+
/**
63+
* Crash id.
64+
* @param crashId crashId or {@code null} for none
65+
*/
66+
public GoogleChromeManagementV1TelemetryOsCrashEvent setCrashId(java.lang.String crashId) {
67+
this.crashId = crashId;
68+
return this;
69+
}
70+
71+
/**
72+
* Crash type.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.String getCrashType() {
76+
return crashType;
77+
}
78+
79+
/**
80+
* Crash type.
81+
* @param crashType crashType or {@code null} for none
82+
*/
83+
public GoogleChromeManagementV1TelemetryOsCrashEvent setCrashType(java.lang.String crashType) {
84+
this.crashType = crashType;
85+
return this;
86+
}
87+
88+
/**
89+
* Session type.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getSessionType() {
93+
return sessionType;
94+
}
95+
96+
/**
97+
* Session type.
98+
* @param sessionType sessionType or {@code null} for none
99+
*/
100+
public GoogleChromeManagementV1TelemetryOsCrashEvent setSessionType(java.lang.String sessionType) {
101+
this.sessionType = sessionType;
102+
return this;
103+
}
104+
105+
@Override
106+
public GoogleChromeManagementV1TelemetryOsCrashEvent set(String fieldName, Object value) {
107+
return (GoogleChromeManagementV1TelemetryOsCrashEvent) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public GoogleChromeManagementV1TelemetryOsCrashEvent clone() {
112+
return (GoogleChromeManagementV1TelemetryOsCrashEvent) super.clone();
113+
}
114+
115+
}

clients/google-api-services-chromemanagement/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-chromemanagement</artifactId>
11-
<version>v1-rev20250417-2.0.0</version>
12-
<name>Chrome Management API v1-rev20250417-2.0.0</name>
11+
<version>v1-rev20250526-2.0.0</version>
12+
<name>Chrome Management API v1-rev20250526-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-chromemanagement/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-chromemanagement</artifactId>
25-
<version>v1-rev20250417-2.0.0</version>
25+
<version>v1-rev20250526-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-chromemanagement:v1-rev20250417-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20250526-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)