Skip to content

Commit 81d2187

Browse files
1 parent 06aa993 commit 81d2187

File tree

7 files changed

+395
-6
lines changed

7 files changed

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

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

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,50 @@ public final class GoogleChromeManagementV1NetworkStatusReport extends com.googl
6464
@com.google.api.client.util.Key
6565
private java.lang.String gatewayIpAddress;
6666

67+
/**
68+
* Output only. The gateway IPv6 for this interface, if detected
69+
* The value may be {@code null}.
70+
*/
71+
@com.google.api.client.util.Key
72+
private java.lang.String gatewayIpv6Address;
73+
6774
/**
6875
* Output only. Network connection guid.
6976
* The value may be {@code null}.
7077
*/
7178
@com.google.api.client.util.Key
7279
private java.lang.String guid;
7380

81+
/**
82+
* Output only. IPv6 addresses assigned to this network, if any. Each address is a string in
83+
* standard IPv6 text representation (e.g., "2001:db8::1").
84+
* The value may be {@code null}.
85+
*/
86+
@com.google.api.client.util.Key
87+
private java.util.List<java.lang.String> ipv6Address;
88+
7489
/**
7590
* Output only. LAN IP address.
7691
* The value may be {@code null}.
7792
*/
7893
@com.google.api.client.util.Key
7994
private java.lang.String lanIpAddress;
8095

96+
/**
97+
* Output only. The maximum downstream bandwidth in Kilobits per second (Kbps), if reported by the
98+
* network interface or connection.
99+
* The value may be {@code null}.
100+
*/
101+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
102+
private java.lang.Long linkDownSpeedKbps;
103+
104+
/**
105+
* Output only. Whether the network was detected as metered.
106+
* The value may be {@code null}.
107+
*/
108+
@com.google.api.client.util.Key
109+
private java.lang.Boolean metered;
110+
81111
/**
82112
* Output only. Receiving bit rate measured in Megabits per second.
83113
* The value may be {@code null}.
@@ -203,6 +233,23 @@ public GoogleChromeManagementV1NetworkStatusReport setGatewayIpAddress(java.lang
203233
return this;
204234
}
205235

236+
/**
237+
* Output only. The gateway IPv6 for this interface, if detected
238+
* @return value or {@code null} for none
239+
*/
240+
public java.lang.String getGatewayIpv6Address() {
241+
return gatewayIpv6Address;
242+
}
243+
244+
/**
245+
* Output only. The gateway IPv6 for this interface, if detected
246+
* @param gatewayIpv6Address gatewayIpv6Address or {@code null} for none
247+
*/
248+
public GoogleChromeManagementV1NetworkStatusReport setGatewayIpv6Address(java.lang.String gatewayIpv6Address) {
249+
this.gatewayIpv6Address = gatewayIpv6Address;
250+
return this;
251+
}
252+
206253
/**
207254
* Output only. Network connection guid.
208255
* @return value or {@code null} for none
@@ -220,6 +267,25 @@ public GoogleChromeManagementV1NetworkStatusReport setGuid(java.lang.String guid
220267
return this;
221268
}
222269

270+
/**
271+
* Output only. IPv6 addresses assigned to this network, if any. Each address is a string in
272+
* standard IPv6 text representation (e.g., "2001:db8::1").
273+
* @return value or {@code null} for none
274+
*/
275+
public java.util.List<java.lang.String> getIpv6Address() {
276+
return ipv6Address;
277+
}
278+
279+
/**
280+
* Output only. IPv6 addresses assigned to this network, if any. Each address is a string in
281+
* standard IPv6 text representation (e.g., "2001:db8::1").
282+
* @param ipv6Address ipv6Address or {@code null} for none
283+
*/
284+
public GoogleChromeManagementV1NetworkStatusReport setIpv6Address(java.util.List<java.lang.String> ipv6Address) {
285+
this.ipv6Address = ipv6Address;
286+
return this;
287+
}
288+
223289
/**
224290
* Output only. LAN IP address.
225291
* @return value or {@code null} for none
@@ -237,6 +303,42 @@ public GoogleChromeManagementV1NetworkStatusReport setLanIpAddress(java.lang.Str
237303
return this;
238304
}
239305

306+
/**
307+
* Output only. The maximum downstream bandwidth in Kilobits per second (Kbps), if reported by the
308+
* network interface or connection.
309+
* @return value or {@code null} for none
310+
*/
311+
public java.lang.Long getLinkDownSpeedKbps() {
312+
return linkDownSpeedKbps;
313+
}
314+
315+
/**
316+
* Output only. The maximum downstream bandwidth in Kilobits per second (Kbps), if reported by the
317+
* network interface or connection.
318+
* @param linkDownSpeedKbps linkDownSpeedKbps or {@code null} for none
319+
*/
320+
public GoogleChromeManagementV1NetworkStatusReport setLinkDownSpeedKbps(java.lang.Long linkDownSpeedKbps) {
321+
this.linkDownSpeedKbps = linkDownSpeedKbps;
322+
return this;
323+
}
324+
325+
/**
326+
* Output only. Whether the network was detected as metered.
327+
* @return value or {@code null} for none
328+
*/
329+
public java.lang.Boolean getMetered() {
330+
return metered;
331+
}
332+
333+
/**
334+
* Output only. Whether the network was detected as metered.
335+
* @param metered metered or {@code null} for none
336+
*/
337+
public GoogleChromeManagementV1NetworkStatusReport setMetered(java.lang.Boolean metered) {
338+
this.metered = metered;
339+
return this;
340+
}
341+
240342
/**
241343
* Output only. Receiving bit rate measured in Megabits per second.
242344
* @return value or {@code null} for none

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@ public final class GoogleChromeManagementV1TelemetryEvent extends com.google.api
7474
@com.google.api.client.util.Key
7575
private java.lang.String eventType;
7676

77+
/**
78+
* Output only. Payload for external display connected/disconnected event. Present only when
79+
* `event_type` is `EXTERNAL_DISPLAY_CONNECTED` or `EXTERNAL_DISPLAY_DISCONNECTED`.
80+
* The value may be {@code null}.
81+
*/
82+
@com.google.api.client.util.Key
83+
private GoogleChromeManagementV1TelemetryExternalDisplayEvent externalDisplaysEvent;
84+
7785
/**
7886
* Output only. Payload for HTTPS latency change event. Present only when `event_type` is
7987
* `NETWORK_HTTPS_LATENCY_CHANGE`.
@@ -248,6 +256,25 @@ public GoogleChromeManagementV1TelemetryEvent setEventType(java.lang.String even
248256
return this;
249257
}
250258

259+
/**
260+
* Output only. Payload for external display connected/disconnected event. Present only when
261+
* `event_type` is `EXTERNAL_DISPLAY_CONNECTED` or `EXTERNAL_DISPLAY_DISCONNECTED`.
262+
* @return value or {@code null} for none
263+
*/
264+
public GoogleChromeManagementV1TelemetryExternalDisplayEvent getExternalDisplaysEvent() {
265+
return externalDisplaysEvent;
266+
}
267+
268+
/**
269+
* Output only. Payload for external display connected/disconnected event. Present only when
270+
* `event_type` is `EXTERNAL_DISPLAY_CONNECTED` or `EXTERNAL_DISPLAY_DISCONNECTED`.
271+
* @param externalDisplaysEvent externalDisplaysEvent or {@code null} for none
272+
*/
273+
public GoogleChromeManagementV1TelemetryEvent setExternalDisplaysEvent(GoogleChromeManagementV1TelemetryExternalDisplayEvent externalDisplaysEvent) {
274+
this.externalDisplaysEvent = externalDisplaysEvent;
275+
return this;
276+
}
277+
251278
/**
252279
* Output only. Payload for HTTPS latency change event. Present only when `event_type` is
253280
* `NETWORK_HTTPS_LATENCY_CHANGE`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
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+
* External display 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 GoogleChromeManagementV1TelemetryExternalDisplayData extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The display name.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String displayName;
39+
40+
/**
41+
* The EDID version.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String edidVersion;
46+
47+
/**
48+
* The refresh rate.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
52+
private java.lang.Long refreshRate;
53+
54+
/**
55+
* The horizontal resolution.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.Integer resolutionHorizontal;
60+
61+
/**
62+
* The vertical resolution.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.Integer resolutionVertical;
67+
68+
/**
69+
* The serial number.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.Integer serialNumber;
74+
75+
/**
76+
* The display name.
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.String getDisplayName() {
80+
return displayName;
81+
}
82+
83+
/**
84+
* The display name.
85+
* @param displayName displayName or {@code null} for none
86+
*/
87+
public GoogleChromeManagementV1TelemetryExternalDisplayData setDisplayName(java.lang.String displayName) {
88+
this.displayName = displayName;
89+
return this;
90+
}
91+
92+
/**
93+
* The EDID version.
94+
* @return value or {@code null} for none
95+
*/
96+
public java.lang.String getEdidVersion() {
97+
return edidVersion;
98+
}
99+
100+
/**
101+
* The EDID version.
102+
* @param edidVersion edidVersion or {@code null} for none
103+
*/
104+
public GoogleChromeManagementV1TelemetryExternalDisplayData setEdidVersion(java.lang.String edidVersion) {
105+
this.edidVersion = edidVersion;
106+
return this;
107+
}
108+
109+
/**
110+
* The refresh rate.
111+
* @return value or {@code null} for none
112+
*/
113+
public java.lang.Long getRefreshRate() {
114+
return refreshRate;
115+
}
116+
117+
/**
118+
* The refresh rate.
119+
* @param refreshRate refreshRate or {@code null} for none
120+
*/
121+
public GoogleChromeManagementV1TelemetryExternalDisplayData setRefreshRate(java.lang.Long refreshRate) {
122+
this.refreshRate = refreshRate;
123+
return this;
124+
}
125+
126+
/**
127+
* The horizontal resolution.
128+
* @return value or {@code null} for none
129+
*/
130+
public java.lang.Integer getResolutionHorizontal() {
131+
return resolutionHorizontal;
132+
}
133+
134+
/**
135+
* The horizontal resolution.
136+
* @param resolutionHorizontal resolutionHorizontal or {@code null} for none
137+
*/
138+
public GoogleChromeManagementV1TelemetryExternalDisplayData setResolutionHorizontal(java.lang.Integer resolutionHorizontal) {
139+
this.resolutionHorizontal = resolutionHorizontal;
140+
return this;
141+
}
142+
143+
/**
144+
* The vertical resolution.
145+
* @return value or {@code null} for none
146+
*/
147+
public java.lang.Integer getResolutionVertical() {
148+
return resolutionVertical;
149+
}
150+
151+
/**
152+
* The vertical resolution.
153+
* @param resolutionVertical resolutionVertical or {@code null} for none
154+
*/
155+
public GoogleChromeManagementV1TelemetryExternalDisplayData setResolutionVertical(java.lang.Integer resolutionVertical) {
156+
this.resolutionVertical = resolutionVertical;
157+
return this;
158+
}
159+
160+
/**
161+
* The serial number.
162+
* @return value or {@code null} for none
163+
*/
164+
public java.lang.Integer getSerialNumber() {
165+
return serialNumber;
166+
}
167+
168+
/**
169+
* The serial number.
170+
* @param serialNumber serialNumber or {@code null} for none
171+
*/
172+
public GoogleChromeManagementV1TelemetryExternalDisplayData setSerialNumber(java.lang.Integer serialNumber) {
173+
this.serialNumber = serialNumber;
174+
return this;
175+
}
176+
177+
@Override
178+
public GoogleChromeManagementV1TelemetryExternalDisplayData set(String fieldName, Object value) {
179+
return (GoogleChromeManagementV1TelemetryExternalDisplayData) super.set(fieldName, value);
180+
}
181+
182+
@Override
183+
public GoogleChromeManagementV1TelemetryExternalDisplayData clone() {
184+
return (GoogleChromeManagementV1TelemetryExternalDisplayData) super.clone();
185+
}
186+
187+
}

0 commit comments

Comments
 (0)