Skip to content

Commit 0037577

Browse files
1 parent e4d58a6 commit 0037577

9 files changed

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

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

Lines changed: 474 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ public final class GoogleChromeManagementV1DisplayDevice extends com.google.api.
5151
@com.google.api.client.util.Key
5252
private java.lang.Integer displayWidthMm;
5353

54+
/**
55+
* Output only. EDID version.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String edidVersion;
60+
5461
/**
5562
* Output only. Is display internal or not.
5663
* The value may be {@code null}.
@@ -79,6 +86,13 @@ public final class GoogleChromeManagementV1DisplayDevice extends com.google.api.
7986
@com.google.api.client.util.Key
8087
private java.lang.Integer modelId;
8188

89+
/**
90+
* Output only. Serial number.
91+
* The value may be {@code null}.
92+
*/
93+
@com.google.api.client.util.Key
94+
private java.lang.Integer serialNumber;
95+
8296
/**
8397
* Output only. Display height in millimeters.
8498
* @return value or {@code null} for none
@@ -130,6 +144,23 @@ public GoogleChromeManagementV1DisplayDevice setDisplayWidthMm(java.lang.Integer
130144
return this;
131145
}
132146

147+
/**
148+
* Output only. EDID version.
149+
* @return value or {@code null} for none
150+
*/
151+
public java.lang.String getEdidVersion() {
152+
return edidVersion;
153+
}
154+
155+
/**
156+
* Output only. EDID version.
157+
* @param edidVersion edidVersion or {@code null} for none
158+
*/
159+
public GoogleChromeManagementV1DisplayDevice setEdidVersion(java.lang.String edidVersion) {
160+
this.edidVersion = edidVersion;
161+
return this;
162+
}
163+
133164
/**
134165
* Output only. Is display internal or not.
135166
* @return value or {@code null} for none
@@ -198,6 +229,23 @@ public GoogleChromeManagementV1DisplayDevice setModelId(java.lang.Integer modelI
198229
return this;
199230
}
200231

232+
/**
233+
* Output only. Serial number.
234+
* @return value or {@code null} for none
235+
*/
236+
public java.lang.Integer getSerialNumber() {
237+
return serialNumber;
238+
}
239+
240+
/**
241+
* Output only. Serial number.
242+
* @param serialNumber serialNumber or {@code null} for none
243+
*/
244+
public GoogleChromeManagementV1DisplayDevice setSerialNumber(java.lang.Integer serialNumber) {
245+
this.serialNumber = serialNumber;
246+
return this;
247+
}
248+
201249
@Override
202250
public GoogleChromeManagementV1DisplayDevice set(String fieldName, Object value) {
203251
return (GoogleChromeManagementV1DisplayDevice) super.set(fieldName, value);

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class GoogleChromeManagementV1DisplayInfo extends com.google.api.cl
4444
@com.google.api.client.util.Key
4545
private java.lang.String displayName;
4646

47+
/**
48+
* Output only. EDID version.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String edidVersion;
53+
4754
/**
4855
* Output only. Indicates if display is internal or not.
4956
* The value may be {@code null}.
@@ -72,6 +79,13 @@ public final class GoogleChromeManagementV1DisplayInfo extends com.google.api.cl
7279
@com.google.api.client.util.Key
7380
private java.lang.Integer resolutionWidth;
7481

82+
/**
83+
* Output only. Serial number.
84+
* The value may be {@code null}.
85+
*/
86+
@com.google.api.client.util.Key
87+
private java.lang.Integer serialNumber;
88+
7589
/**
7690
* Output only. Represents the graphics card device id.
7791
* @return value or {@code null} for none
@@ -106,6 +120,23 @@ public GoogleChromeManagementV1DisplayInfo setDisplayName(java.lang.String displ
106120
return this;
107121
}
108122

123+
/**
124+
* Output only. EDID version.
125+
* @return value or {@code null} for none
126+
*/
127+
public java.lang.String getEdidVersion() {
128+
return edidVersion;
129+
}
130+
131+
/**
132+
* Output only. EDID version.
133+
* @param edidVersion edidVersion or {@code null} for none
134+
*/
135+
public GoogleChromeManagementV1DisplayInfo setEdidVersion(java.lang.String edidVersion) {
136+
this.edidVersion = edidVersion;
137+
return this;
138+
}
139+
109140
/**
110141
* Output only. Indicates if display is internal or not.
111142
* @return value or {@code null} for none
@@ -174,6 +205,23 @@ public GoogleChromeManagementV1DisplayInfo setResolutionWidth(java.lang.Integer
174205
return this;
175206
}
176207

208+
/**
209+
* Output only. Serial number.
210+
* @return value or {@code null} for none
211+
*/
212+
public java.lang.Integer getSerialNumber() {
213+
return serialNumber;
214+
}
215+
216+
/**
217+
* Output only. Serial number.
218+
* @param serialNumber serialNumber or {@code null} for none
219+
*/
220+
public GoogleChromeManagementV1DisplayInfo setSerialNumber(java.lang.Integer serialNumber) {
221+
this.serialNumber = serialNumber;
222+
return this;
223+
}
224+
177225
@Override
178226
public GoogleChromeManagementV1DisplayInfo set(String fieldName, Object value) {
179227
return (GoogleChromeManagementV1DisplayInfo) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,217 @@
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+
* A representation of a remote command for a Chrome browser profile.
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 GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. Result of the remote command.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult commandResult;
39+
40+
/**
41+
* Output only. State of the remote command.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String commandState;
46+
47+
/**
48+
* Required. Type of the remote command. The only supported command_type is "clearBrowsingData".
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String commandType;
53+
54+
/**
55+
* Output only. Timestamp of the issurance of the remote command.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private String issueTime;
60+
61+
/**
62+
* Identifier. Format:
63+
* customers/{customer_id}/profiles/{profile_permanent_id}/commands/{command_id}
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String name;
68+
69+
/**
70+
* Required. Payload of the remote command. The payload for "clearBrowsingData" command supports:
71+
* - fields "clearCache" and "clearCookies" - values of boolean type.
72+
* The value may be {@code null}.
73+
*/
74+
@com.google.api.client.util.Key
75+
private java.util.Map<String, java.lang.Object> payload;
76+
77+
/**
78+
* Output only. Valid duration of the remote command.
79+
* The value may be {@code null}.
80+
*/
81+
@com.google.api.client.util.Key
82+
private String validDuration;
83+
84+
/**
85+
* Output only. Result of the remote command.
86+
* @return value or {@code null} for none
87+
*/
88+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult getCommandResult() {
89+
return commandResult;
90+
}
91+
92+
/**
93+
* Output only. Result of the remote command.
94+
* @param commandResult commandResult or {@code null} for none
95+
*/
96+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand setCommandResult(GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult commandResult) {
97+
this.commandResult = commandResult;
98+
return this;
99+
}
100+
101+
/**
102+
* Output only. State of the remote command.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getCommandState() {
106+
return commandState;
107+
}
108+
109+
/**
110+
* Output only. State of the remote command.
111+
* @param commandState commandState or {@code null} for none
112+
*/
113+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand setCommandState(java.lang.String commandState) {
114+
this.commandState = commandState;
115+
return this;
116+
}
117+
118+
/**
119+
* Required. Type of the remote command. The only supported command_type is "clearBrowsingData".
120+
* @return value or {@code null} for none
121+
*/
122+
public java.lang.String getCommandType() {
123+
return commandType;
124+
}
125+
126+
/**
127+
* Required. Type of the remote command. The only supported command_type is "clearBrowsingData".
128+
* @param commandType commandType or {@code null} for none
129+
*/
130+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand setCommandType(java.lang.String commandType) {
131+
this.commandType = commandType;
132+
return this;
133+
}
134+
135+
/**
136+
* Output only. Timestamp of the issurance of the remote command.
137+
* @return value or {@code null} for none
138+
*/
139+
public String getIssueTime() {
140+
return issueTime;
141+
}
142+
143+
/**
144+
* Output only. Timestamp of the issurance of the remote command.
145+
* @param issueTime issueTime or {@code null} for none
146+
*/
147+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand setIssueTime(String issueTime) {
148+
this.issueTime = issueTime;
149+
return this;
150+
}
151+
152+
/**
153+
* Identifier. Format:
154+
* customers/{customer_id}/profiles/{profile_permanent_id}/commands/{command_id}
155+
* @return value or {@code null} for none
156+
*/
157+
public java.lang.String getName() {
158+
return name;
159+
}
160+
161+
/**
162+
* Identifier. Format:
163+
* customers/{customer_id}/profiles/{profile_permanent_id}/commands/{command_id}
164+
* @param name name or {@code null} for none
165+
*/
166+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand setName(java.lang.String name) {
167+
this.name = name;
168+
return this;
169+
}
170+
171+
/**
172+
* Required. Payload of the remote command. The payload for "clearBrowsingData" command supports:
173+
* - fields "clearCache" and "clearCookies" - values of boolean type.
174+
* @return value or {@code null} for none
175+
*/
176+
public java.util.Map<String, java.lang.Object> getPayload() {
177+
return payload;
178+
}
179+
180+
/**
181+
* Required. Payload of the remote command. The payload for "clearBrowsingData" command supports:
182+
* - fields "clearCache" and "clearCookies" - values of boolean type.
183+
* @param payload payload or {@code null} for none
184+
*/
185+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand setPayload(java.util.Map<String, java.lang.Object> payload) {
186+
this.payload = payload;
187+
return this;
188+
}
189+
190+
/**
191+
* Output only. Valid duration of the remote command.
192+
* @return value or {@code null} for none
193+
*/
194+
public String getValidDuration() {
195+
return validDuration;
196+
}
197+
198+
/**
199+
* Output only. Valid duration of the remote command.
200+
* @param validDuration validDuration or {@code null} for none
201+
*/
202+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand setValidDuration(String validDuration) {
203+
this.validDuration = validDuration;
204+
return this;
205+
}
206+
207+
@Override
208+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand set(String fieldName, Object value) {
209+
return (GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand) super.set(fieldName, value);
210+
}
211+
212+
@Override
213+
public GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand clone() {
214+
return (GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand) super.clone();
215+
}
216+
217+
}

0 commit comments

Comments
 (0)