1<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5  margin: 0;
6  padding: 0;
7  border: 0;
8  font-weight: inherit;
9  font-style: inherit;
10  font-size: 100%;
11  font-family: inherit;
12  vertical-align: baseline;
13}
14
15body {
16  font-size: 13px;
17  padding: 1em;
18}
19
20h1 {
21  font-size: 26px;
22  margin-bottom: 1em;
23}
24
25h2 {
26  font-size: 24px;
27  margin-bottom: 1em;
28}
29
30h3 {
31  font-size: 20px;
32  margin-bottom: 1em;
33  margin-top: 1em;
34}
35
36pre, code {
37  line-height: 1.5;
38  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42  margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46  font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50  border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54  margin-top: 0.5em;
55}
56
57.firstline {
58  margin-left: 2 em;
59}
60
61.method  {
62  margin-top: 1em;
63  border: solid 1px #CCC;
64  padding: 1em;
65  background: #EEE;
66}
67
68.details {
69  font-weight: bold;
70  font-size: 14px;
71}
72
73</style>
74
75<h1><a href="admin_directory_v1.html">Admin SDK API</a> . <a href="admin_directory_v1.chromeosdevices.html">chromeosdevices</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#action">action(customerId, resourceId, body=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Takes an action that affects a Chrome OS Device. This includes deprovisioning, disabling, and re-enabling devices. *Warning:* * Deprovisioning a device will stop device policy syncing and remove device-level printers. After a device is deprovisioned, it must be wiped before it can be re-enrolled. * Lost or stolen devices should use the disable action. * Re-enabling a disabled device will consume a device license. If you do not have sufficient licenses available when completing the re-enable action, you will receive an error. For more information about deprovisioning and disabling devices, visit the [help center](https://support.google.com/chrome/a/answer/3523633).</p>
80<p class="toc_element">
81  <code><a href="#close">close()</a></code></p>
82<p class="firstline">Close httplib2 connections.</p>
83<p class="toc_element">
84  <code><a href="#get">get(customerId, deviceId, projection=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Retrieves a Chrome OS device's properties.</p>
86<p class="toc_element">
87  <code><a href="#list">list(customerId, includeChildOrgunits=None, maxResults=None, orderBy=None, orgUnitPath=None, pageToken=None, projection=None, query=None, sortOrder=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Retrieves a paginated list of Chrome OS devices within an account.</p>
89<p class="toc_element">
90  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
93  <code><a href="#moveDevicesToOu">moveDevicesToOu(customerId, orgUnitPath, body=None, x__xgafv=None)</a></code></p>
94<p class="firstline">Moves or inserts multiple Chrome OS devices to an organizational unit. You can move up to 50 devices at once.</p>
95<p class="toc_element">
96  <code><a href="#patch">patch(customerId, deviceId, body=None, projection=None, x__xgafv=None)</a></code></p>
97<p class="firstline">Updates a device's updatable properties, such as `annotatedUser`, `annotatedLocation`, `notes`, `orgUnitPath`, or `annotatedAssetId`. This method supports [patch semantics](/admin-sdk/directory/v1/guides/performance#patch).</p>
98<p class="toc_element">
99  <code><a href="#update">update(customerId, deviceId, body=None, projection=None, x__xgafv=None)</a></code></p>
100<p class="firstline">Updates a device's updatable properties, such as `annotatedUser`, `annotatedLocation`, `notes`, `orgUnitPath`, or `annotatedAssetId`.</p>
101<h3>Method Details</h3>
102<div class="method">
103    <code class="details" id="action">action(customerId, resourceId, body=None, x__xgafv=None)</code>
104  <pre>Takes an action that affects a Chrome OS Device. This includes deprovisioning, disabling, and re-enabling devices. *Warning:* * Deprovisioning a device will stop device policy syncing and remove device-level printers. After a device is deprovisioned, it must be wiped before it can be re-enrolled. * Lost or stolen devices should use the disable action. * Re-enabling a disabled device will consume a device license. If you do not have sufficient licenses available when completing the re-enable action, you will receive an error. For more information about deprovisioning and disabling devices, visit the [help center](https://support.google.com/chrome/a/answer/3523633).
105
106Args:
107  customerId: string, The unique ID for the customer&#x27;s Google Workspace account. As an account administrator, you can also use the `my_customer` alias to represent your account&#x27;s `customerId`. The `customerId` is also returned as part of the [Users resource](/admin-sdk/directory/v1/reference/users). (required)
108  resourceId: string, The unique ID of the device. The `resourceId`s are returned in the response from the [chromeosdevices.list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method. (required)
109  body: object, The request body.
110    The object takes the form of:
111
112{
113  &quot;action&quot;: &quot;A String&quot;, # Action to be taken on the Chrome OS device.
114  &quot;deprovisionReason&quot;: &quot;A String&quot;, # Only used when the action is `deprovision`. With the `deprovision` action, this field is required. *Note*: The deprovision reason is audited because it might have implications on licenses for perpetual subscription customers.
115}
116
117  x__xgafv: string, V1 error format.
118    Allowed values
119      1 - v1 error format
120      2 - v2 error format
121</pre>
122</div>
123
124<div class="method">
125    <code class="details" id="close">close()</code>
126  <pre>Close httplib2 connections.</pre>
127</div>
128
129<div class="method">
130    <code class="details" id="get">get(customerId, deviceId, projection=None, x__xgafv=None)</code>
131  <pre>Retrieves a Chrome OS device&#x27;s properties.
132
133Args:
134  customerId: string, The unique ID for the customer&#x27;s Google Workspace account. As an account administrator, you can also use the `my_customer` alias to represent your account&#x27;s `customerId`. The `customerId` is also returned as part of the [Users resource](/admin-sdk/directory/v1/reference/users). (required)
135  deviceId: string, The unique ID of the device. The `deviceId`s are returned in the response from the [chromeosdevices.list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method. (required)
136  projection: string, Determines whether the response contains the full list of properties or only a subset.
137    Allowed values
138      BASIC - Includes only the basic metadata fields (e.g., deviceId, serialNumber, status, and user)
139      FULL - Includes all metadata fields
140  x__xgafv: string, V1 error format.
141    Allowed values
142      1 - v1 error format
143      2 - v2 error format
144
145Returns:
146  An object of the form:
147
148    { # Google Chrome devices run on the [Chrome OS](https://support.google.com/chromeos). For more information about common API tasks, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices).
149  &quot;activeTimeRanges&quot;: [ # List of active time ranges (Read-only).
150    {
151      &quot;activeTime&quot;: 42, # Duration of usage in milliseconds.
152      &quot;date&quot;: &quot;A String&quot;, # Date of usage
153    },
154  ],
155  &quot;annotatedAssetId&quot;: &quot;A String&quot;, # The asset identifier as noted by an administrator or specified during enrollment.
156  &quot;annotatedLocation&quot;: &quot;A String&quot;, # The address or location of the device as noted by the administrator. Maximum length is `200` characters. Empty values are allowed.
157  &quot;annotatedUser&quot;: &quot;A String&quot;, # The user of the device as noted by the administrator. Maximum length is 100 characters. Empty values are allowed.
158  &quot;autoUpdateExpiration&quot;: &quot;A String&quot;, # (Read-only) The timestamp after which the device will stop receiving Chrome updates or support
159  &quot;bootMode&quot;: &quot;A String&quot;, # The boot mode for the device. The possible values are: * `Verified`: The device is running a valid version of the Chrome OS. * `Dev`: The devices&#x27;s developer hardware switch is enabled. When booted, the device has a command line shell. For an example of a developer switch, see the [Chromebook developer information](https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices/samsung-series-5-chromebook#TOC-Developer-switch).
160  &quot;cpuInfo&quot;: [ # Information regarding CPU specs in the device.
161    { # CPU specs for a CPU.
162      &quot;architecture&quot;: &quot;A String&quot;, # The CPU architecture.
163      &quot;logicalCpus&quot;: [ # Information for the Logical CPUs
164        { # Status of a single logical CPU.
165          &quot;cStates&quot;: [ # C-States indicate the power consumption state of the CPU. For more information look at documentation published by the CPU maker.
166            { # Status of a single C-state. C-states are various modes the CPU can transition to in order to use more or less power.
167              &quot;displayName&quot;: &quot;A String&quot;, # Name of the state.
168              &quot;sessionDuration&quot;: &quot;A String&quot;, # Time spent in the state since the last reboot.
169            },
170          ],
171          &quot;currentScalingFrequencyKhz&quot;: 42, # Current frequency the CPU is running at.
172          &quot;idleDuration&quot;: &quot;A String&quot;, # Idle time since last boot.
173          &quot;maxScalingFrequencyKhz&quot;: 42, # Maximum frequency the CPU is allowed to run at, by policy.
174        },
175      ],
176      &quot;maxClockSpeedKhz&quot;: 42, # The max CPU clock speed in kHz.
177      &quot;model&quot;: &quot;A String&quot;, # The CPU model name.
178    },
179  ],
180  &quot;cpuStatusReports&quot;: [ # Reports of CPU utilization and temperature (Read-only)
181    {
182      &quot;cpuTemperatureInfo&quot;: [ # List of CPU temperature samples.
183        {
184          &quot;label&quot;: &quot;A String&quot;, # CPU label
185          &quot;temperature&quot;: 42, # Temperature in Celsius degrees.
186        },
187      ],
188      &quot;cpuUtilizationPercentageInfo&quot;: [
189        42,
190      ],
191      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
192    },
193  ],
194  &quot;deviceFiles&quot;: [ # List of device files to download (Read-only)
195    {
196      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
197      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
198      &quot;name&quot;: &quot;A String&quot;, # File name
199      &quot;type&quot;: &quot;A String&quot;, # File type
200    },
201  ],
202  &quot;deviceId&quot;: &quot;A String&quot;, # The unique ID of the Chrome device.
203  &quot;diskVolumeReports&quot;: [ # Reports of disk space and other info about mounted/connected volumes.
204    {
205      &quot;volumeInfo&quot;: [ # Disk volumes
206        {
207          &quot;storageFree&quot;: &quot;A String&quot;, # Free disk space [in bytes]
208          &quot;storageTotal&quot;: &quot;A String&quot;, # Total disk space [in bytes]
209          &quot;volumeId&quot;: &quot;A String&quot;, # Volume id
210        },
211      ],
212    },
213  ],
214  &quot;dockMacAddress&quot;: &quot;A String&quot;, # (Read-only) Built-in MAC address for the docking station that the device connected to. Factory sets Media access control address (MAC address) assigned for use by a dock. It is reserved specifically for MAC pass through device policy. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
215  &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
216  &quot;ethernetMacAddress&quot;: &quot;A String&quot;, # The device&#x27;s MAC address on the ethernet network interface.
217  &quot;ethernetMacAddress0&quot;: &quot;A String&quot;, # (Read-only) MAC address used by the Chromebook’s internal ethernet port, and for onboard network (ethernet) interface. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
218  &quot;firmwareVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s firmware version.
219  &quot;kind&quot;: &quot;admin#directory#chromeosdevice&quot;, # The type of resource. For the Chromeosdevices resource, the value is `admin#directory#chromeosdevice`.
220  &quot;lastEnrollmentTime&quot;: &quot;A String&quot;, # Date and time the device was last enrolled (Read-only)
221  &quot;lastKnownNetwork&quot;: [ # Contains last known network (Read-only)
222    { # Information for an ip address.
223      &quot;ipAddress&quot;: &quot;A String&quot;, # The IP address.
224      &quot;wanIpAddress&quot;: &quot;A String&quot;, # The WAN IP address.
225    },
226  ],
227  &quot;lastSync&quot;: &quot;A String&quot;, # Date and time the device was last synchronized with the policy settings in the G Suite administrator control panel (Read-only)
228  &quot;macAddress&quot;: &quot;A String&quot;, # The device&#x27;s wireless MAC address. If the device does not have this information, it is not included in the response.
229  &quot;manufactureDate&quot;: &quot;A String&quot;, # (Read-only) The date the device was manufactured in yyyy-mm-dd format.
230  &quot;meid&quot;: &quot;A String&quot;, # The Mobile Equipment Identifier (MEID) or the International Mobile Equipment Identity (IMEI) for the 3G mobile card in a mobile device. A MEID/IMEI is typically used when adding a device to a wireless carrier&#x27;s post-pay service plan. If the device does not have this information, this property is not included in the response. For more information on how to export a MEID/IMEI list, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices.html#export_meid).
231  &quot;model&quot;: &quot;A String&quot;, # The device&#x27;s model information. If the device does not have this information, this property is not included in the response.
232  &quot;notes&quot;: &quot;A String&quot;, # Notes about this device added by the administrator. This property can be [searched](https://support.google.com/chrome/a/answer/1698333) with the [list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method&#x27;s `query` parameter. Maximum length is 500 characters. Empty values are allowed.
233  &quot;orderNumber&quot;: &quot;A String&quot;, # The device&#x27;s order number. Only devices directly purchased from Google have an order number.
234  &quot;orgUnitId&quot;: &quot;A String&quot;, # The unique ID of the organizational unit. orgUnitPath is the human readable version of orgUnitId. While orgUnitPath may change by renaming an organizational unit within the path, orgUnitId is unchangeable for one organizational unit. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API, and this will be supported in the future.
235  &quot;orgUnitPath&quot;: &quot;A String&quot;, # The full parent path with the organizational unit&#x27;s name associated with the device. Path names are case insensitive. If the parent organizational unit is the top-level organization, it is represented as a forward slash, `/`. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API. For more information about how to create an organizational structure for your device, see the [administration help center](https://support.google.com/a/answer/182433).
236  &quot;osVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s operating system version.
237  &quot;platformVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s platform version.
238  &quot;recentUsers&quot;: [ # List of recent device users, in descending order, by last login time.
239    { # List of recent device users, in descending order, by last login time.
240      &quot;email&quot;: &quot;A String&quot;, # The user&#x27;s email address. This is only present if the user type is `USER_TYPE_MANAGED`.
241      &quot;type&quot;: &quot;A String&quot;, # The type of the user.
242    },
243  ],
244  &quot;screenshotFiles&quot;: [ # List of screenshot files to download. Type is always &quot;SCREENSHOT_FILE&quot;. (Read-only)
245    {
246      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
247      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
248      &quot;name&quot;: &quot;A String&quot;, # File name
249      &quot;type&quot;: &quot;A String&quot;, # File type
250    },
251  ],
252  &quot;serialNumber&quot;: &quot;A String&quot;, # The Chrome device serial number entered when the device was enabled. This value is the same as the Admin console&#x27;s *Serial Number* in the *Chrome OS Devices* tab.
253  &quot;status&quot;: &quot;A String&quot;, # The status of the device.
254  &quot;supportEndDate&quot;: &quot;A String&quot;, # Final date the device will be supported (Read-only)
255  &quot;systemRamFreeReports&quot;: [ # Reports of amounts of available RAM memory (Read-only)
256    {
257      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
258      &quot;systemRamFreeInfo&quot;: [
259        &quot;A String&quot;,
260      ],
261    },
262  ],
263  &quot;systemRamTotal&quot;: &quot;A String&quot;, # Total RAM on the device [in bytes] (Read-only)
264  &quot;tpmVersionInfo&quot;: { # Trusted Platform Module (TPM) (Read-only)
265    &quot;family&quot;: &quot;A String&quot;, # TPM family. We use the TPM 2.0 style encoding, e.g.: TPM 1.2: &quot;1.2&quot; -&gt; 312e3200 TPM 2.0: &quot;2.0&quot; -&gt; 322e3000
266    &quot;firmwareVersion&quot;: &quot;A String&quot;, # TPM firmware version.
267    &quot;manufacturer&quot;: &quot;A String&quot;, # TPM manufacturer code.
268    &quot;specLevel&quot;: &quot;A String&quot;, # TPM specification level. See Library Specification for TPM 2.0 and Main Specification for TPM 1.2.
269    &quot;tpmModel&quot;: &quot;A String&quot;, # TPM model number.
270    &quot;vendorSpecific&quot;: &quot;A String&quot;, # Vendor-specific information such as Vendor ID.
271  },
272  &quot;willAutoRenew&quot;: True or False, # Determines if the device will auto renew its support after the support end date. This is a read-only property.
273}</pre>
274</div>
275
276<div class="method">
277    <code class="details" id="list">list(customerId, includeChildOrgunits=None, maxResults=None, orderBy=None, orgUnitPath=None, pageToken=None, projection=None, query=None, sortOrder=None, x__xgafv=None)</code>
278  <pre>Retrieves a paginated list of Chrome OS devices within an account.
279
280Args:
281  customerId: string, The unique ID for the customer&#x27;s Google Workspace account. As an account administrator, you can also use the `my_customer` alias to represent your account&#x27;s `customerId`. The `customerId` is also returned as part of the [Users resource](/admin-sdk/directory/v1/reference/users). (required)
282  includeChildOrgunits: boolean, Return devices from all child orgunits, as well as the specified org unit. If this is set to true &#x27;orgUnitPath&#x27; must be provided.
283  maxResults: integer, Maximum number of results to return.
284  orderBy: string, Device property to use for sorting results.
285    Allowed values
286      annotatedLocation - Chrome device location as annotated by the administrator.
287      annotatedUser - Chromebook user as annotated by administrator.
288      lastSync - The date and time the Chrome device was last synchronized with the policy settings in the Admin console.
289      notes - Chrome device notes as annotated by the administrator.
290      serialNumber - The Chrome device serial number entered when the device was enabled.
291      status - Chrome device status. For more information, see the &lt;a [chromeosdevices](/admin-sdk/directory/v1/reference/chromeosdevices.html).
292      supportEndDate - Chrome device support end date. This is applicable only for devices purchased directly from Google.
293  orgUnitPath: string, The full path of the organizational unit (minus the leading `/`) or its unique ID.
294  pageToken: string, The `pageToken` query parameter is used to request the next page of query results. The follow-on request&#x27;s `pageToken` query parameter is the `nextPageToken` from your previous response.
295  projection: string, Restrict information returned to a set of selected fields.
296    Allowed values
297      BASIC - Includes only the basic metadata fields (e.g., deviceId, serialNumber, status, and user)
298      FULL - Includes all metadata fields
299  query: string, Search string in the format given at https://developers.google.com/admin-sdk/directory/v1/list-query-operators
300  sortOrder: string, Whether to return results in ascending or descending order. Must be used with the `orderBy` parameter.
301    Allowed values
302      ASCENDING - Ascending order.
303      DESCENDING - Descending order.
304  x__xgafv: string, V1 error format.
305    Allowed values
306      1 - v1 error format
307      2 - v2 error format
308
309Returns:
310  An object of the form:
311
312    {
313  &quot;chromeosdevices&quot;: [ # List of Chrome OS Device objects.
314    { # Google Chrome devices run on the [Chrome OS](https://support.google.com/chromeos). For more information about common API tasks, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices).
315      &quot;activeTimeRanges&quot;: [ # List of active time ranges (Read-only).
316        {
317          &quot;activeTime&quot;: 42, # Duration of usage in milliseconds.
318          &quot;date&quot;: &quot;A String&quot;, # Date of usage
319        },
320      ],
321      &quot;annotatedAssetId&quot;: &quot;A String&quot;, # The asset identifier as noted by an administrator or specified during enrollment.
322      &quot;annotatedLocation&quot;: &quot;A String&quot;, # The address or location of the device as noted by the administrator. Maximum length is `200` characters. Empty values are allowed.
323      &quot;annotatedUser&quot;: &quot;A String&quot;, # The user of the device as noted by the administrator. Maximum length is 100 characters. Empty values are allowed.
324      &quot;autoUpdateExpiration&quot;: &quot;A String&quot;, # (Read-only) The timestamp after which the device will stop receiving Chrome updates or support
325      &quot;bootMode&quot;: &quot;A String&quot;, # The boot mode for the device. The possible values are: * `Verified`: The device is running a valid version of the Chrome OS. * `Dev`: The devices&#x27;s developer hardware switch is enabled. When booted, the device has a command line shell. For an example of a developer switch, see the [Chromebook developer information](https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices/samsung-series-5-chromebook#TOC-Developer-switch).
326      &quot;cpuInfo&quot;: [ # Information regarding CPU specs in the device.
327        { # CPU specs for a CPU.
328          &quot;architecture&quot;: &quot;A String&quot;, # The CPU architecture.
329          &quot;logicalCpus&quot;: [ # Information for the Logical CPUs
330            { # Status of a single logical CPU.
331              &quot;cStates&quot;: [ # C-States indicate the power consumption state of the CPU. For more information look at documentation published by the CPU maker.
332                { # Status of a single C-state. C-states are various modes the CPU can transition to in order to use more or less power.
333                  &quot;displayName&quot;: &quot;A String&quot;, # Name of the state.
334                  &quot;sessionDuration&quot;: &quot;A String&quot;, # Time spent in the state since the last reboot.
335                },
336              ],
337              &quot;currentScalingFrequencyKhz&quot;: 42, # Current frequency the CPU is running at.
338              &quot;idleDuration&quot;: &quot;A String&quot;, # Idle time since last boot.
339              &quot;maxScalingFrequencyKhz&quot;: 42, # Maximum frequency the CPU is allowed to run at, by policy.
340            },
341          ],
342          &quot;maxClockSpeedKhz&quot;: 42, # The max CPU clock speed in kHz.
343          &quot;model&quot;: &quot;A String&quot;, # The CPU model name.
344        },
345      ],
346      &quot;cpuStatusReports&quot;: [ # Reports of CPU utilization and temperature (Read-only)
347        {
348          &quot;cpuTemperatureInfo&quot;: [ # List of CPU temperature samples.
349            {
350              &quot;label&quot;: &quot;A String&quot;, # CPU label
351              &quot;temperature&quot;: 42, # Temperature in Celsius degrees.
352            },
353          ],
354          &quot;cpuUtilizationPercentageInfo&quot;: [
355            42,
356          ],
357          &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
358        },
359      ],
360      &quot;deviceFiles&quot;: [ # List of device files to download (Read-only)
361        {
362          &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
363          &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
364          &quot;name&quot;: &quot;A String&quot;, # File name
365          &quot;type&quot;: &quot;A String&quot;, # File type
366        },
367      ],
368      &quot;deviceId&quot;: &quot;A String&quot;, # The unique ID of the Chrome device.
369      &quot;diskVolumeReports&quot;: [ # Reports of disk space and other info about mounted/connected volumes.
370        {
371          &quot;volumeInfo&quot;: [ # Disk volumes
372            {
373              &quot;storageFree&quot;: &quot;A String&quot;, # Free disk space [in bytes]
374              &quot;storageTotal&quot;: &quot;A String&quot;, # Total disk space [in bytes]
375              &quot;volumeId&quot;: &quot;A String&quot;, # Volume id
376            },
377          ],
378        },
379      ],
380      &quot;dockMacAddress&quot;: &quot;A String&quot;, # (Read-only) Built-in MAC address for the docking station that the device connected to. Factory sets Media access control address (MAC address) assigned for use by a dock. It is reserved specifically for MAC pass through device policy. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
381      &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
382      &quot;ethernetMacAddress&quot;: &quot;A String&quot;, # The device&#x27;s MAC address on the ethernet network interface.
383      &quot;ethernetMacAddress0&quot;: &quot;A String&quot;, # (Read-only) MAC address used by the Chromebook’s internal ethernet port, and for onboard network (ethernet) interface. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
384      &quot;firmwareVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s firmware version.
385      &quot;kind&quot;: &quot;admin#directory#chromeosdevice&quot;, # The type of resource. For the Chromeosdevices resource, the value is `admin#directory#chromeosdevice`.
386      &quot;lastEnrollmentTime&quot;: &quot;A String&quot;, # Date and time the device was last enrolled (Read-only)
387      &quot;lastKnownNetwork&quot;: [ # Contains last known network (Read-only)
388        { # Information for an ip address.
389          &quot;ipAddress&quot;: &quot;A String&quot;, # The IP address.
390          &quot;wanIpAddress&quot;: &quot;A String&quot;, # The WAN IP address.
391        },
392      ],
393      &quot;lastSync&quot;: &quot;A String&quot;, # Date and time the device was last synchronized with the policy settings in the G Suite administrator control panel (Read-only)
394      &quot;macAddress&quot;: &quot;A String&quot;, # The device&#x27;s wireless MAC address. If the device does not have this information, it is not included in the response.
395      &quot;manufactureDate&quot;: &quot;A String&quot;, # (Read-only) The date the device was manufactured in yyyy-mm-dd format.
396      &quot;meid&quot;: &quot;A String&quot;, # The Mobile Equipment Identifier (MEID) or the International Mobile Equipment Identity (IMEI) for the 3G mobile card in a mobile device. A MEID/IMEI is typically used when adding a device to a wireless carrier&#x27;s post-pay service plan. If the device does not have this information, this property is not included in the response. For more information on how to export a MEID/IMEI list, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices.html#export_meid).
397      &quot;model&quot;: &quot;A String&quot;, # The device&#x27;s model information. If the device does not have this information, this property is not included in the response.
398      &quot;notes&quot;: &quot;A String&quot;, # Notes about this device added by the administrator. This property can be [searched](https://support.google.com/chrome/a/answer/1698333) with the [list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method&#x27;s `query` parameter. Maximum length is 500 characters. Empty values are allowed.
399      &quot;orderNumber&quot;: &quot;A String&quot;, # The device&#x27;s order number. Only devices directly purchased from Google have an order number.
400      &quot;orgUnitId&quot;: &quot;A String&quot;, # The unique ID of the organizational unit. orgUnitPath is the human readable version of orgUnitId. While orgUnitPath may change by renaming an organizational unit within the path, orgUnitId is unchangeable for one organizational unit. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API, and this will be supported in the future.
401      &quot;orgUnitPath&quot;: &quot;A String&quot;, # The full parent path with the organizational unit&#x27;s name associated with the device. Path names are case insensitive. If the parent organizational unit is the top-level organization, it is represented as a forward slash, `/`. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API. For more information about how to create an organizational structure for your device, see the [administration help center](https://support.google.com/a/answer/182433).
402      &quot;osVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s operating system version.
403      &quot;platformVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s platform version.
404      &quot;recentUsers&quot;: [ # List of recent device users, in descending order, by last login time.
405        { # List of recent device users, in descending order, by last login time.
406          &quot;email&quot;: &quot;A String&quot;, # The user&#x27;s email address. This is only present if the user type is `USER_TYPE_MANAGED`.
407          &quot;type&quot;: &quot;A String&quot;, # The type of the user.
408        },
409      ],
410      &quot;screenshotFiles&quot;: [ # List of screenshot files to download. Type is always &quot;SCREENSHOT_FILE&quot;. (Read-only)
411        {
412          &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
413          &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
414          &quot;name&quot;: &quot;A String&quot;, # File name
415          &quot;type&quot;: &quot;A String&quot;, # File type
416        },
417      ],
418      &quot;serialNumber&quot;: &quot;A String&quot;, # The Chrome device serial number entered when the device was enabled. This value is the same as the Admin console&#x27;s *Serial Number* in the *Chrome OS Devices* tab.
419      &quot;status&quot;: &quot;A String&quot;, # The status of the device.
420      &quot;supportEndDate&quot;: &quot;A String&quot;, # Final date the device will be supported (Read-only)
421      &quot;systemRamFreeReports&quot;: [ # Reports of amounts of available RAM memory (Read-only)
422        {
423          &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
424          &quot;systemRamFreeInfo&quot;: [
425            &quot;A String&quot;,
426          ],
427        },
428      ],
429      &quot;systemRamTotal&quot;: &quot;A String&quot;, # Total RAM on the device [in bytes] (Read-only)
430      &quot;tpmVersionInfo&quot;: { # Trusted Platform Module (TPM) (Read-only)
431        &quot;family&quot;: &quot;A String&quot;, # TPM family. We use the TPM 2.0 style encoding, e.g.: TPM 1.2: &quot;1.2&quot; -&gt; 312e3200 TPM 2.0: &quot;2.0&quot; -&gt; 322e3000
432        &quot;firmwareVersion&quot;: &quot;A String&quot;, # TPM firmware version.
433        &quot;manufacturer&quot;: &quot;A String&quot;, # TPM manufacturer code.
434        &quot;specLevel&quot;: &quot;A String&quot;, # TPM specification level. See Library Specification for TPM 2.0 and Main Specification for TPM 1.2.
435        &quot;tpmModel&quot;: &quot;A String&quot;, # TPM model number.
436        &quot;vendorSpecific&quot;: &quot;A String&quot;, # Vendor-specific information such as Vendor ID.
437      },
438      &quot;willAutoRenew&quot;: True or False, # Determines if the device will auto renew its support after the support end date. This is a read-only property.
439    },
440  ],
441  &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
442  &quot;kind&quot;: &quot;admin#directory#chromeosdevices&quot;, # Kind of resource this is.
443  &quot;nextPageToken&quot;: &quot;A String&quot;, # Token used to access the next page of this result. To access the next page, use this token&#x27;s value in the `pageToken` query string of this request.
444}</pre>
445</div>
446
447<div class="method">
448    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
449  <pre>Retrieves the next page of results.
450
451Args:
452  previous_request: The request for the previous page. (required)
453  previous_response: The response from the request for the previous page. (required)
454
455Returns:
456  A request object that you can call &#x27;execute()&#x27; on to request the next
457  page. Returns None if there are no more items in the collection.
458    </pre>
459</div>
460
461<div class="method">
462    <code class="details" id="moveDevicesToOu">moveDevicesToOu(customerId, orgUnitPath, body=None, x__xgafv=None)</code>
463  <pre>Moves or inserts multiple Chrome OS devices to an organizational unit. You can move up to 50 devices at once.
464
465Args:
466  customerId: string, Immutable ID of the Google Workspace account (required)
467  orgUnitPath: string, Full path of the target organizational unit or its ID (required)
468  body: object, The request body.
469    The object takes the form of:
470
471{
472  &quot;deviceIds&quot;: [ # Chrome OS devices to be moved to OU
473    &quot;A String&quot;,
474  ],
475}
476
477  x__xgafv: string, V1 error format.
478    Allowed values
479      1 - v1 error format
480      2 - v2 error format
481</pre>
482</div>
483
484<div class="method">
485    <code class="details" id="patch">patch(customerId, deviceId, body=None, projection=None, x__xgafv=None)</code>
486  <pre>Updates a device&#x27;s updatable properties, such as `annotatedUser`, `annotatedLocation`, `notes`, `orgUnitPath`, or `annotatedAssetId`. This method supports [patch semantics](/admin-sdk/directory/v1/guides/performance#patch).
487
488Args:
489  customerId: string, The unique ID for the customer&#x27;s Google Workspace account. As an account administrator, you can also use the `my_customer` alias to represent your account&#x27;s `customerId`. The `customerId` is also returned as part of the [Users resource](/admin-sdk/directory/v1/reference/users). (required)
490  deviceId: string, The unique ID of the device. The `deviceId`s are returned in the response from the [chromeosdevices.list](/admin-sdk/v1/reference/chromeosdevices/list) method. (required)
491  body: object, The request body.
492    The object takes the form of:
493
494{ # Google Chrome devices run on the [Chrome OS](https://support.google.com/chromeos). For more information about common API tasks, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices).
495  &quot;activeTimeRanges&quot;: [ # List of active time ranges (Read-only).
496    {
497      &quot;activeTime&quot;: 42, # Duration of usage in milliseconds.
498      &quot;date&quot;: &quot;A String&quot;, # Date of usage
499    },
500  ],
501  &quot;annotatedAssetId&quot;: &quot;A String&quot;, # The asset identifier as noted by an administrator or specified during enrollment.
502  &quot;annotatedLocation&quot;: &quot;A String&quot;, # The address or location of the device as noted by the administrator. Maximum length is `200` characters. Empty values are allowed.
503  &quot;annotatedUser&quot;: &quot;A String&quot;, # The user of the device as noted by the administrator. Maximum length is 100 characters. Empty values are allowed.
504  &quot;autoUpdateExpiration&quot;: &quot;A String&quot;, # (Read-only) The timestamp after which the device will stop receiving Chrome updates or support
505  &quot;bootMode&quot;: &quot;A String&quot;, # The boot mode for the device. The possible values are: * `Verified`: The device is running a valid version of the Chrome OS. * `Dev`: The devices&#x27;s developer hardware switch is enabled. When booted, the device has a command line shell. For an example of a developer switch, see the [Chromebook developer information](https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices/samsung-series-5-chromebook#TOC-Developer-switch).
506  &quot;cpuInfo&quot;: [ # Information regarding CPU specs in the device.
507    { # CPU specs for a CPU.
508      &quot;architecture&quot;: &quot;A String&quot;, # The CPU architecture.
509      &quot;logicalCpus&quot;: [ # Information for the Logical CPUs
510        { # Status of a single logical CPU.
511          &quot;cStates&quot;: [ # C-States indicate the power consumption state of the CPU. For more information look at documentation published by the CPU maker.
512            { # Status of a single C-state. C-states are various modes the CPU can transition to in order to use more or less power.
513              &quot;displayName&quot;: &quot;A String&quot;, # Name of the state.
514              &quot;sessionDuration&quot;: &quot;A String&quot;, # Time spent in the state since the last reboot.
515            },
516          ],
517          &quot;currentScalingFrequencyKhz&quot;: 42, # Current frequency the CPU is running at.
518          &quot;idleDuration&quot;: &quot;A String&quot;, # Idle time since last boot.
519          &quot;maxScalingFrequencyKhz&quot;: 42, # Maximum frequency the CPU is allowed to run at, by policy.
520        },
521      ],
522      &quot;maxClockSpeedKhz&quot;: 42, # The max CPU clock speed in kHz.
523      &quot;model&quot;: &quot;A String&quot;, # The CPU model name.
524    },
525  ],
526  &quot;cpuStatusReports&quot;: [ # Reports of CPU utilization and temperature (Read-only)
527    {
528      &quot;cpuTemperatureInfo&quot;: [ # List of CPU temperature samples.
529        {
530          &quot;label&quot;: &quot;A String&quot;, # CPU label
531          &quot;temperature&quot;: 42, # Temperature in Celsius degrees.
532        },
533      ],
534      &quot;cpuUtilizationPercentageInfo&quot;: [
535        42,
536      ],
537      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
538    },
539  ],
540  &quot;deviceFiles&quot;: [ # List of device files to download (Read-only)
541    {
542      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
543      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
544      &quot;name&quot;: &quot;A String&quot;, # File name
545      &quot;type&quot;: &quot;A String&quot;, # File type
546    },
547  ],
548  &quot;deviceId&quot;: &quot;A String&quot;, # The unique ID of the Chrome device.
549  &quot;diskVolumeReports&quot;: [ # Reports of disk space and other info about mounted/connected volumes.
550    {
551      &quot;volumeInfo&quot;: [ # Disk volumes
552        {
553          &quot;storageFree&quot;: &quot;A String&quot;, # Free disk space [in bytes]
554          &quot;storageTotal&quot;: &quot;A String&quot;, # Total disk space [in bytes]
555          &quot;volumeId&quot;: &quot;A String&quot;, # Volume id
556        },
557      ],
558    },
559  ],
560  &quot;dockMacAddress&quot;: &quot;A String&quot;, # (Read-only) Built-in MAC address for the docking station that the device connected to. Factory sets Media access control address (MAC address) assigned for use by a dock. It is reserved specifically for MAC pass through device policy. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
561  &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
562  &quot;ethernetMacAddress&quot;: &quot;A String&quot;, # The device&#x27;s MAC address on the ethernet network interface.
563  &quot;ethernetMacAddress0&quot;: &quot;A String&quot;, # (Read-only) MAC address used by the Chromebook’s internal ethernet port, and for onboard network (ethernet) interface. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
564  &quot;firmwareVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s firmware version.
565  &quot;kind&quot;: &quot;admin#directory#chromeosdevice&quot;, # The type of resource. For the Chromeosdevices resource, the value is `admin#directory#chromeosdevice`.
566  &quot;lastEnrollmentTime&quot;: &quot;A String&quot;, # Date and time the device was last enrolled (Read-only)
567  &quot;lastKnownNetwork&quot;: [ # Contains last known network (Read-only)
568    { # Information for an ip address.
569      &quot;ipAddress&quot;: &quot;A String&quot;, # The IP address.
570      &quot;wanIpAddress&quot;: &quot;A String&quot;, # The WAN IP address.
571    },
572  ],
573  &quot;lastSync&quot;: &quot;A String&quot;, # Date and time the device was last synchronized with the policy settings in the G Suite administrator control panel (Read-only)
574  &quot;macAddress&quot;: &quot;A String&quot;, # The device&#x27;s wireless MAC address. If the device does not have this information, it is not included in the response.
575  &quot;manufactureDate&quot;: &quot;A String&quot;, # (Read-only) The date the device was manufactured in yyyy-mm-dd format.
576  &quot;meid&quot;: &quot;A String&quot;, # The Mobile Equipment Identifier (MEID) or the International Mobile Equipment Identity (IMEI) for the 3G mobile card in a mobile device. A MEID/IMEI is typically used when adding a device to a wireless carrier&#x27;s post-pay service plan. If the device does not have this information, this property is not included in the response. For more information on how to export a MEID/IMEI list, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices.html#export_meid).
577  &quot;model&quot;: &quot;A String&quot;, # The device&#x27;s model information. If the device does not have this information, this property is not included in the response.
578  &quot;notes&quot;: &quot;A String&quot;, # Notes about this device added by the administrator. This property can be [searched](https://support.google.com/chrome/a/answer/1698333) with the [list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method&#x27;s `query` parameter. Maximum length is 500 characters. Empty values are allowed.
579  &quot;orderNumber&quot;: &quot;A String&quot;, # The device&#x27;s order number. Only devices directly purchased from Google have an order number.
580  &quot;orgUnitId&quot;: &quot;A String&quot;, # The unique ID of the organizational unit. orgUnitPath is the human readable version of orgUnitId. While orgUnitPath may change by renaming an organizational unit within the path, orgUnitId is unchangeable for one organizational unit. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API, and this will be supported in the future.
581  &quot;orgUnitPath&quot;: &quot;A String&quot;, # The full parent path with the organizational unit&#x27;s name associated with the device. Path names are case insensitive. If the parent organizational unit is the top-level organization, it is represented as a forward slash, `/`. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API. For more information about how to create an organizational structure for your device, see the [administration help center](https://support.google.com/a/answer/182433).
582  &quot;osVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s operating system version.
583  &quot;platformVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s platform version.
584  &quot;recentUsers&quot;: [ # List of recent device users, in descending order, by last login time.
585    { # List of recent device users, in descending order, by last login time.
586      &quot;email&quot;: &quot;A String&quot;, # The user&#x27;s email address. This is only present if the user type is `USER_TYPE_MANAGED`.
587      &quot;type&quot;: &quot;A String&quot;, # The type of the user.
588    },
589  ],
590  &quot;screenshotFiles&quot;: [ # List of screenshot files to download. Type is always &quot;SCREENSHOT_FILE&quot;. (Read-only)
591    {
592      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
593      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
594      &quot;name&quot;: &quot;A String&quot;, # File name
595      &quot;type&quot;: &quot;A String&quot;, # File type
596    },
597  ],
598  &quot;serialNumber&quot;: &quot;A String&quot;, # The Chrome device serial number entered when the device was enabled. This value is the same as the Admin console&#x27;s *Serial Number* in the *Chrome OS Devices* tab.
599  &quot;status&quot;: &quot;A String&quot;, # The status of the device.
600  &quot;supportEndDate&quot;: &quot;A String&quot;, # Final date the device will be supported (Read-only)
601  &quot;systemRamFreeReports&quot;: [ # Reports of amounts of available RAM memory (Read-only)
602    {
603      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
604      &quot;systemRamFreeInfo&quot;: [
605        &quot;A String&quot;,
606      ],
607    },
608  ],
609  &quot;systemRamTotal&quot;: &quot;A String&quot;, # Total RAM on the device [in bytes] (Read-only)
610  &quot;tpmVersionInfo&quot;: { # Trusted Platform Module (TPM) (Read-only)
611    &quot;family&quot;: &quot;A String&quot;, # TPM family. We use the TPM 2.0 style encoding, e.g.: TPM 1.2: &quot;1.2&quot; -&gt; 312e3200 TPM 2.0: &quot;2.0&quot; -&gt; 322e3000
612    &quot;firmwareVersion&quot;: &quot;A String&quot;, # TPM firmware version.
613    &quot;manufacturer&quot;: &quot;A String&quot;, # TPM manufacturer code.
614    &quot;specLevel&quot;: &quot;A String&quot;, # TPM specification level. See Library Specification for TPM 2.0 and Main Specification for TPM 1.2.
615    &quot;tpmModel&quot;: &quot;A String&quot;, # TPM model number.
616    &quot;vendorSpecific&quot;: &quot;A String&quot;, # Vendor-specific information such as Vendor ID.
617  },
618  &quot;willAutoRenew&quot;: True or False, # Determines if the device will auto renew its support after the support end date. This is a read-only property.
619}
620
621  projection: string, Restrict information returned to a set of selected fields.
622    Allowed values
623      BASIC - Includes only the basic metadata fields (e.g., deviceId, serialNumber, status, and user)
624      FULL - Includes all metadata fields
625  x__xgafv: string, V1 error format.
626    Allowed values
627      1 - v1 error format
628      2 - v2 error format
629
630Returns:
631  An object of the form:
632
633    { # Google Chrome devices run on the [Chrome OS](https://support.google.com/chromeos). For more information about common API tasks, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices).
634  &quot;activeTimeRanges&quot;: [ # List of active time ranges (Read-only).
635    {
636      &quot;activeTime&quot;: 42, # Duration of usage in milliseconds.
637      &quot;date&quot;: &quot;A String&quot;, # Date of usage
638    },
639  ],
640  &quot;annotatedAssetId&quot;: &quot;A String&quot;, # The asset identifier as noted by an administrator or specified during enrollment.
641  &quot;annotatedLocation&quot;: &quot;A String&quot;, # The address or location of the device as noted by the administrator. Maximum length is `200` characters. Empty values are allowed.
642  &quot;annotatedUser&quot;: &quot;A String&quot;, # The user of the device as noted by the administrator. Maximum length is 100 characters. Empty values are allowed.
643  &quot;autoUpdateExpiration&quot;: &quot;A String&quot;, # (Read-only) The timestamp after which the device will stop receiving Chrome updates or support
644  &quot;bootMode&quot;: &quot;A String&quot;, # The boot mode for the device. The possible values are: * `Verified`: The device is running a valid version of the Chrome OS. * `Dev`: The devices&#x27;s developer hardware switch is enabled. When booted, the device has a command line shell. For an example of a developer switch, see the [Chromebook developer information](https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices/samsung-series-5-chromebook#TOC-Developer-switch).
645  &quot;cpuInfo&quot;: [ # Information regarding CPU specs in the device.
646    { # CPU specs for a CPU.
647      &quot;architecture&quot;: &quot;A String&quot;, # The CPU architecture.
648      &quot;logicalCpus&quot;: [ # Information for the Logical CPUs
649        { # Status of a single logical CPU.
650          &quot;cStates&quot;: [ # C-States indicate the power consumption state of the CPU. For more information look at documentation published by the CPU maker.
651            { # Status of a single C-state. C-states are various modes the CPU can transition to in order to use more or less power.
652              &quot;displayName&quot;: &quot;A String&quot;, # Name of the state.
653              &quot;sessionDuration&quot;: &quot;A String&quot;, # Time spent in the state since the last reboot.
654            },
655          ],
656          &quot;currentScalingFrequencyKhz&quot;: 42, # Current frequency the CPU is running at.
657          &quot;idleDuration&quot;: &quot;A String&quot;, # Idle time since last boot.
658          &quot;maxScalingFrequencyKhz&quot;: 42, # Maximum frequency the CPU is allowed to run at, by policy.
659        },
660      ],
661      &quot;maxClockSpeedKhz&quot;: 42, # The max CPU clock speed in kHz.
662      &quot;model&quot;: &quot;A String&quot;, # The CPU model name.
663    },
664  ],
665  &quot;cpuStatusReports&quot;: [ # Reports of CPU utilization and temperature (Read-only)
666    {
667      &quot;cpuTemperatureInfo&quot;: [ # List of CPU temperature samples.
668        {
669          &quot;label&quot;: &quot;A String&quot;, # CPU label
670          &quot;temperature&quot;: 42, # Temperature in Celsius degrees.
671        },
672      ],
673      &quot;cpuUtilizationPercentageInfo&quot;: [
674        42,
675      ],
676      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
677    },
678  ],
679  &quot;deviceFiles&quot;: [ # List of device files to download (Read-only)
680    {
681      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
682      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
683      &quot;name&quot;: &quot;A String&quot;, # File name
684      &quot;type&quot;: &quot;A String&quot;, # File type
685    },
686  ],
687  &quot;deviceId&quot;: &quot;A String&quot;, # The unique ID of the Chrome device.
688  &quot;diskVolumeReports&quot;: [ # Reports of disk space and other info about mounted/connected volumes.
689    {
690      &quot;volumeInfo&quot;: [ # Disk volumes
691        {
692          &quot;storageFree&quot;: &quot;A String&quot;, # Free disk space [in bytes]
693          &quot;storageTotal&quot;: &quot;A String&quot;, # Total disk space [in bytes]
694          &quot;volumeId&quot;: &quot;A String&quot;, # Volume id
695        },
696      ],
697    },
698  ],
699  &quot;dockMacAddress&quot;: &quot;A String&quot;, # (Read-only) Built-in MAC address for the docking station that the device connected to. Factory sets Media access control address (MAC address) assigned for use by a dock. It is reserved specifically for MAC pass through device policy. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
700  &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
701  &quot;ethernetMacAddress&quot;: &quot;A String&quot;, # The device&#x27;s MAC address on the ethernet network interface.
702  &quot;ethernetMacAddress0&quot;: &quot;A String&quot;, # (Read-only) MAC address used by the Chromebook’s internal ethernet port, and for onboard network (ethernet) interface. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
703  &quot;firmwareVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s firmware version.
704  &quot;kind&quot;: &quot;admin#directory#chromeosdevice&quot;, # The type of resource. For the Chromeosdevices resource, the value is `admin#directory#chromeosdevice`.
705  &quot;lastEnrollmentTime&quot;: &quot;A String&quot;, # Date and time the device was last enrolled (Read-only)
706  &quot;lastKnownNetwork&quot;: [ # Contains last known network (Read-only)
707    { # Information for an ip address.
708      &quot;ipAddress&quot;: &quot;A String&quot;, # The IP address.
709      &quot;wanIpAddress&quot;: &quot;A String&quot;, # The WAN IP address.
710    },
711  ],
712  &quot;lastSync&quot;: &quot;A String&quot;, # Date and time the device was last synchronized with the policy settings in the G Suite administrator control panel (Read-only)
713  &quot;macAddress&quot;: &quot;A String&quot;, # The device&#x27;s wireless MAC address. If the device does not have this information, it is not included in the response.
714  &quot;manufactureDate&quot;: &quot;A String&quot;, # (Read-only) The date the device was manufactured in yyyy-mm-dd format.
715  &quot;meid&quot;: &quot;A String&quot;, # The Mobile Equipment Identifier (MEID) or the International Mobile Equipment Identity (IMEI) for the 3G mobile card in a mobile device. A MEID/IMEI is typically used when adding a device to a wireless carrier&#x27;s post-pay service plan. If the device does not have this information, this property is not included in the response. For more information on how to export a MEID/IMEI list, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices.html#export_meid).
716  &quot;model&quot;: &quot;A String&quot;, # The device&#x27;s model information. If the device does not have this information, this property is not included in the response.
717  &quot;notes&quot;: &quot;A String&quot;, # Notes about this device added by the administrator. This property can be [searched](https://support.google.com/chrome/a/answer/1698333) with the [list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method&#x27;s `query` parameter. Maximum length is 500 characters. Empty values are allowed.
718  &quot;orderNumber&quot;: &quot;A String&quot;, # The device&#x27;s order number. Only devices directly purchased from Google have an order number.
719  &quot;orgUnitId&quot;: &quot;A String&quot;, # The unique ID of the organizational unit. orgUnitPath is the human readable version of orgUnitId. While orgUnitPath may change by renaming an organizational unit within the path, orgUnitId is unchangeable for one organizational unit. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API, and this will be supported in the future.
720  &quot;orgUnitPath&quot;: &quot;A String&quot;, # The full parent path with the organizational unit&#x27;s name associated with the device. Path names are case insensitive. If the parent organizational unit is the top-level organization, it is represented as a forward slash, `/`. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API. For more information about how to create an organizational structure for your device, see the [administration help center](https://support.google.com/a/answer/182433).
721  &quot;osVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s operating system version.
722  &quot;platformVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s platform version.
723  &quot;recentUsers&quot;: [ # List of recent device users, in descending order, by last login time.
724    { # List of recent device users, in descending order, by last login time.
725      &quot;email&quot;: &quot;A String&quot;, # The user&#x27;s email address. This is only present if the user type is `USER_TYPE_MANAGED`.
726      &quot;type&quot;: &quot;A String&quot;, # The type of the user.
727    },
728  ],
729  &quot;screenshotFiles&quot;: [ # List of screenshot files to download. Type is always &quot;SCREENSHOT_FILE&quot;. (Read-only)
730    {
731      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
732      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
733      &quot;name&quot;: &quot;A String&quot;, # File name
734      &quot;type&quot;: &quot;A String&quot;, # File type
735    },
736  ],
737  &quot;serialNumber&quot;: &quot;A String&quot;, # The Chrome device serial number entered when the device was enabled. This value is the same as the Admin console&#x27;s *Serial Number* in the *Chrome OS Devices* tab.
738  &quot;status&quot;: &quot;A String&quot;, # The status of the device.
739  &quot;supportEndDate&quot;: &quot;A String&quot;, # Final date the device will be supported (Read-only)
740  &quot;systemRamFreeReports&quot;: [ # Reports of amounts of available RAM memory (Read-only)
741    {
742      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
743      &quot;systemRamFreeInfo&quot;: [
744        &quot;A String&quot;,
745      ],
746    },
747  ],
748  &quot;systemRamTotal&quot;: &quot;A String&quot;, # Total RAM on the device [in bytes] (Read-only)
749  &quot;tpmVersionInfo&quot;: { # Trusted Platform Module (TPM) (Read-only)
750    &quot;family&quot;: &quot;A String&quot;, # TPM family. We use the TPM 2.0 style encoding, e.g.: TPM 1.2: &quot;1.2&quot; -&gt; 312e3200 TPM 2.0: &quot;2.0&quot; -&gt; 322e3000
751    &quot;firmwareVersion&quot;: &quot;A String&quot;, # TPM firmware version.
752    &quot;manufacturer&quot;: &quot;A String&quot;, # TPM manufacturer code.
753    &quot;specLevel&quot;: &quot;A String&quot;, # TPM specification level. See Library Specification for TPM 2.0 and Main Specification for TPM 1.2.
754    &quot;tpmModel&quot;: &quot;A String&quot;, # TPM model number.
755    &quot;vendorSpecific&quot;: &quot;A String&quot;, # Vendor-specific information such as Vendor ID.
756  },
757  &quot;willAutoRenew&quot;: True or False, # Determines if the device will auto renew its support after the support end date. This is a read-only property.
758}</pre>
759</div>
760
761<div class="method">
762    <code class="details" id="update">update(customerId, deviceId, body=None, projection=None, x__xgafv=None)</code>
763  <pre>Updates a device&#x27;s updatable properties, such as `annotatedUser`, `annotatedLocation`, `notes`, `orgUnitPath`, or `annotatedAssetId`.
764
765Args:
766  customerId: string, The unique ID for the customer&#x27;s Google Workspace account. As an account administrator, you can also use the `my_customer` alias to represent your account&#x27;s `customerId`. The `customerId` is also returned as part of the [Users resource](/admin-sdk/directory/v1/reference/users). (required)
767  deviceId: string, The unique ID of the device. The `deviceId`s are returned in the response from the [chromeosdevices.list](/admin-sdk/v1/reference/chromeosdevices/list) method. (required)
768  body: object, The request body.
769    The object takes the form of:
770
771{ # Google Chrome devices run on the [Chrome OS](https://support.google.com/chromeos). For more information about common API tasks, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices).
772  &quot;activeTimeRanges&quot;: [ # List of active time ranges (Read-only).
773    {
774      &quot;activeTime&quot;: 42, # Duration of usage in milliseconds.
775      &quot;date&quot;: &quot;A String&quot;, # Date of usage
776    },
777  ],
778  &quot;annotatedAssetId&quot;: &quot;A String&quot;, # The asset identifier as noted by an administrator or specified during enrollment.
779  &quot;annotatedLocation&quot;: &quot;A String&quot;, # The address or location of the device as noted by the administrator. Maximum length is `200` characters. Empty values are allowed.
780  &quot;annotatedUser&quot;: &quot;A String&quot;, # The user of the device as noted by the administrator. Maximum length is 100 characters. Empty values are allowed.
781  &quot;autoUpdateExpiration&quot;: &quot;A String&quot;, # (Read-only) The timestamp after which the device will stop receiving Chrome updates or support
782  &quot;bootMode&quot;: &quot;A String&quot;, # The boot mode for the device. The possible values are: * `Verified`: The device is running a valid version of the Chrome OS. * `Dev`: The devices&#x27;s developer hardware switch is enabled. When booted, the device has a command line shell. For an example of a developer switch, see the [Chromebook developer information](https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices/samsung-series-5-chromebook#TOC-Developer-switch).
783  &quot;cpuInfo&quot;: [ # Information regarding CPU specs in the device.
784    { # CPU specs for a CPU.
785      &quot;architecture&quot;: &quot;A String&quot;, # The CPU architecture.
786      &quot;logicalCpus&quot;: [ # Information for the Logical CPUs
787        { # Status of a single logical CPU.
788          &quot;cStates&quot;: [ # C-States indicate the power consumption state of the CPU. For more information look at documentation published by the CPU maker.
789            { # Status of a single C-state. C-states are various modes the CPU can transition to in order to use more or less power.
790              &quot;displayName&quot;: &quot;A String&quot;, # Name of the state.
791              &quot;sessionDuration&quot;: &quot;A String&quot;, # Time spent in the state since the last reboot.
792            },
793          ],
794          &quot;currentScalingFrequencyKhz&quot;: 42, # Current frequency the CPU is running at.
795          &quot;idleDuration&quot;: &quot;A String&quot;, # Idle time since last boot.
796          &quot;maxScalingFrequencyKhz&quot;: 42, # Maximum frequency the CPU is allowed to run at, by policy.
797        },
798      ],
799      &quot;maxClockSpeedKhz&quot;: 42, # The max CPU clock speed in kHz.
800      &quot;model&quot;: &quot;A String&quot;, # The CPU model name.
801    },
802  ],
803  &quot;cpuStatusReports&quot;: [ # Reports of CPU utilization and temperature (Read-only)
804    {
805      &quot;cpuTemperatureInfo&quot;: [ # List of CPU temperature samples.
806        {
807          &quot;label&quot;: &quot;A String&quot;, # CPU label
808          &quot;temperature&quot;: 42, # Temperature in Celsius degrees.
809        },
810      ],
811      &quot;cpuUtilizationPercentageInfo&quot;: [
812        42,
813      ],
814      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
815    },
816  ],
817  &quot;deviceFiles&quot;: [ # List of device files to download (Read-only)
818    {
819      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
820      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
821      &quot;name&quot;: &quot;A String&quot;, # File name
822      &quot;type&quot;: &quot;A String&quot;, # File type
823    },
824  ],
825  &quot;deviceId&quot;: &quot;A String&quot;, # The unique ID of the Chrome device.
826  &quot;diskVolumeReports&quot;: [ # Reports of disk space and other info about mounted/connected volumes.
827    {
828      &quot;volumeInfo&quot;: [ # Disk volumes
829        {
830          &quot;storageFree&quot;: &quot;A String&quot;, # Free disk space [in bytes]
831          &quot;storageTotal&quot;: &quot;A String&quot;, # Total disk space [in bytes]
832          &quot;volumeId&quot;: &quot;A String&quot;, # Volume id
833        },
834      ],
835    },
836  ],
837  &quot;dockMacAddress&quot;: &quot;A String&quot;, # (Read-only) Built-in MAC address for the docking station that the device connected to. Factory sets Media access control address (MAC address) assigned for use by a dock. It is reserved specifically for MAC pass through device policy. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
838  &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
839  &quot;ethernetMacAddress&quot;: &quot;A String&quot;, # The device&#x27;s MAC address on the ethernet network interface.
840  &quot;ethernetMacAddress0&quot;: &quot;A String&quot;, # (Read-only) MAC address used by the Chromebook’s internal ethernet port, and for onboard network (ethernet) interface. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
841  &quot;firmwareVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s firmware version.
842  &quot;kind&quot;: &quot;admin#directory#chromeosdevice&quot;, # The type of resource. For the Chromeosdevices resource, the value is `admin#directory#chromeosdevice`.
843  &quot;lastEnrollmentTime&quot;: &quot;A String&quot;, # Date and time the device was last enrolled (Read-only)
844  &quot;lastKnownNetwork&quot;: [ # Contains last known network (Read-only)
845    { # Information for an ip address.
846      &quot;ipAddress&quot;: &quot;A String&quot;, # The IP address.
847      &quot;wanIpAddress&quot;: &quot;A String&quot;, # The WAN IP address.
848    },
849  ],
850  &quot;lastSync&quot;: &quot;A String&quot;, # Date and time the device was last synchronized with the policy settings in the G Suite administrator control panel (Read-only)
851  &quot;macAddress&quot;: &quot;A String&quot;, # The device&#x27;s wireless MAC address. If the device does not have this information, it is not included in the response.
852  &quot;manufactureDate&quot;: &quot;A String&quot;, # (Read-only) The date the device was manufactured in yyyy-mm-dd format.
853  &quot;meid&quot;: &quot;A String&quot;, # The Mobile Equipment Identifier (MEID) or the International Mobile Equipment Identity (IMEI) for the 3G mobile card in a mobile device. A MEID/IMEI is typically used when adding a device to a wireless carrier&#x27;s post-pay service plan. If the device does not have this information, this property is not included in the response. For more information on how to export a MEID/IMEI list, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices.html#export_meid).
854  &quot;model&quot;: &quot;A String&quot;, # The device&#x27;s model information. If the device does not have this information, this property is not included in the response.
855  &quot;notes&quot;: &quot;A String&quot;, # Notes about this device added by the administrator. This property can be [searched](https://support.google.com/chrome/a/answer/1698333) with the [list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method&#x27;s `query` parameter. Maximum length is 500 characters. Empty values are allowed.
856  &quot;orderNumber&quot;: &quot;A String&quot;, # The device&#x27;s order number. Only devices directly purchased from Google have an order number.
857  &quot;orgUnitId&quot;: &quot;A String&quot;, # The unique ID of the organizational unit. orgUnitPath is the human readable version of orgUnitId. While orgUnitPath may change by renaming an organizational unit within the path, orgUnitId is unchangeable for one organizational unit. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API, and this will be supported in the future.
858  &quot;orgUnitPath&quot;: &quot;A String&quot;, # The full parent path with the organizational unit&#x27;s name associated with the device. Path names are case insensitive. If the parent organizational unit is the top-level organization, it is represented as a forward slash, `/`. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API. For more information about how to create an organizational structure for your device, see the [administration help center](https://support.google.com/a/answer/182433).
859  &quot;osVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s operating system version.
860  &quot;platformVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s platform version.
861  &quot;recentUsers&quot;: [ # List of recent device users, in descending order, by last login time.
862    { # List of recent device users, in descending order, by last login time.
863      &quot;email&quot;: &quot;A String&quot;, # The user&#x27;s email address. This is only present if the user type is `USER_TYPE_MANAGED`.
864      &quot;type&quot;: &quot;A String&quot;, # The type of the user.
865    },
866  ],
867  &quot;screenshotFiles&quot;: [ # List of screenshot files to download. Type is always &quot;SCREENSHOT_FILE&quot;. (Read-only)
868    {
869      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
870      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
871      &quot;name&quot;: &quot;A String&quot;, # File name
872      &quot;type&quot;: &quot;A String&quot;, # File type
873    },
874  ],
875  &quot;serialNumber&quot;: &quot;A String&quot;, # The Chrome device serial number entered when the device was enabled. This value is the same as the Admin console&#x27;s *Serial Number* in the *Chrome OS Devices* tab.
876  &quot;status&quot;: &quot;A String&quot;, # The status of the device.
877  &quot;supportEndDate&quot;: &quot;A String&quot;, # Final date the device will be supported (Read-only)
878  &quot;systemRamFreeReports&quot;: [ # Reports of amounts of available RAM memory (Read-only)
879    {
880      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
881      &quot;systemRamFreeInfo&quot;: [
882        &quot;A String&quot;,
883      ],
884    },
885  ],
886  &quot;systemRamTotal&quot;: &quot;A String&quot;, # Total RAM on the device [in bytes] (Read-only)
887  &quot;tpmVersionInfo&quot;: { # Trusted Platform Module (TPM) (Read-only)
888    &quot;family&quot;: &quot;A String&quot;, # TPM family. We use the TPM 2.0 style encoding, e.g.: TPM 1.2: &quot;1.2&quot; -&gt; 312e3200 TPM 2.0: &quot;2.0&quot; -&gt; 322e3000
889    &quot;firmwareVersion&quot;: &quot;A String&quot;, # TPM firmware version.
890    &quot;manufacturer&quot;: &quot;A String&quot;, # TPM manufacturer code.
891    &quot;specLevel&quot;: &quot;A String&quot;, # TPM specification level. See Library Specification for TPM 2.0 and Main Specification for TPM 1.2.
892    &quot;tpmModel&quot;: &quot;A String&quot;, # TPM model number.
893    &quot;vendorSpecific&quot;: &quot;A String&quot;, # Vendor-specific information such as Vendor ID.
894  },
895  &quot;willAutoRenew&quot;: True or False, # Determines if the device will auto renew its support after the support end date. This is a read-only property.
896}
897
898  projection: string, Restrict information returned to a set of selected fields.
899    Allowed values
900      BASIC - Includes only the basic metadata fields (e.g., deviceId, serialNumber, status, and user)
901      FULL - Includes all metadata fields
902  x__xgafv: string, V1 error format.
903    Allowed values
904      1 - v1 error format
905      2 - v2 error format
906
907Returns:
908  An object of the form:
909
910    { # Google Chrome devices run on the [Chrome OS](https://support.google.com/chromeos). For more information about common API tasks, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices).
911  &quot;activeTimeRanges&quot;: [ # List of active time ranges (Read-only).
912    {
913      &quot;activeTime&quot;: 42, # Duration of usage in milliseconds.
914      &quot;date&quot;: &quot;A String&quot;, # Date of usage
915    },
916  ],
917  &quot;annotatedAssetId&quot;: &quot;A String&quot;, # The asset identifier as noted by an administrator or specified during enrollment.
918  &quot;annotatedLocation&quot;: &quot;A String&quot;, # The address or location of the device as noted by the administrator. Maximum length is `200` characters. Empty values are allowed.
919  &quot;annotatedUser&quot;: &quot;A String&quot;, # The user of the device as noted by the administrator. Maximum length is 100 characters. Empty values are allowed.
920  &quot;autoUpdateExpiration&quot;: &quot;A String&quot;, # (Read-only) The timestamp after which the device will stop receiving Chrome updates or support
921  &quot;bootMode&quot;: &quot;A String&quot;, # The boot mode for the device. The possible values are: * `Verified`: The device is running a valid version of the Chrome OS. * `Dev`: The devices&#x27;s developer hardware switch is enabled. When booted, the device has a command line shell. For an example of a developer switch, see the [Chromebook developer information](https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices/samsung-series-5-chromebook#TOC-Developer-switch).
922  &quot;cpuInfo&quot;: [ # Information regarding CPU specs in the device.
923    { # CPU specs for a CPU.
924      &quot;architecture&quot;: &quot;A String&quot;, # The CPU architecture.
925      &quot;logicalCpus&quot;: [ # Information for the Logical CPUs
926        { # Status of a single logical CPU.
927          &quot;cStates&quot;: [ # C-States indicate the power consumption state of the CPU. For more information look at documentation published by the CPU maker.
928            { # Status of a single C-state. C-states are various modes the CPU can transition to in order to use more or less power.
929              &quot;displayName&quot;: &quot;A String&quot;, # Name of the state.
930              &quot;sessionDuration&quot;: &quot;A String&quot;, # Time spent in the state since the last reboot.
931            },
932          ],
933          &quot;currentScalingFrequencyKhz&quot;: 42, # Current frequency the CPU is running at.
934          &quot;idleDuration&quot;: &quot;A String&quot;, # Idle time since last boot.
935          &quot;maxScalingFrequencyKhz&quot;: 42, # Maximum frequency the CPU is allowed to run at, by policy.
936        },
937      ],
938      &quot;maxClockSpeedKhz&quot;: 42, # The max CPU clock speed in kHz.
939      &quot;model&quot;: &quot;A String&quot;, # The CPU model name.
940    },
941  ],
942  &quot;cpuStatusReports&quot;: [ # Reports of CPU utilization and temperature (Read-only)
943    {
944      &quot;cpuTemperatureInfo&quot;: [ # List of CPU temperature samples.
945        {
946          &quot;label&quot;: &quot;A String&quot;, # CPU label
947          &quot;temperature&quot;: 42, # Temperature in Celsius degrees.
948        },
949      ],
950      &quot;cpuUtilizationPercentageInfo&quot;: [
951        42,
952      ],
953      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
954    },
955  ],
956  &quot;deviceFiles&quot;: [ # List of device files to download (Read-only)
957    {
958      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
959      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
960      &quot;name&quot;: &quot;A String&quot;, # File name
961      &quot;type&quot;: &quot;A String&quot;, # File type
962    },
963  ],
964  &quot;deviceId&quot;: &quot;A String&quot;, # The unique ID of the Chrome device.
965  &quot;diskVolumeReports&quot;: [ # Reports of disk space and other info about mounted/connected volumes.
966    {
967      &quot;volumeInfo&quot;: [ # Disk volumes
968        {
969          &quot;storageFree&quot;: &quot;A String&quot;, # Free disk space [in bytes]
970          &quot;storageTotal&quot;: &quot;A String&quot;, # Total disk space [in bytes]
971          &quot;volumeId&quot;: &quot;A String&quot;, # Volume id
972        },
973      ],
974    },
975  ],
976  &quot;dockMacAddress&quot;: &quot;A String&quot;, # (Read-only) Built-in MAC address for the docking station that the device connected to. Factory sets Media access control address (MAC address) assigned for use by a dock. It is reserved specifically for MAC pass through device policy. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
977  &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
978  &quot;ethernetMacAddress&quot;: &quot;A String&quot;, # The device&#x27;s MAC address on the ethernet network interface.
979  &quot;ethernetMacAddress0&quot;: &quot;A String&quot;, # (Read-only) MAC address used by the Chromebook’s internal ethernet port, and for onboard network (ethernet) interface. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.
980  &quot;firmwareVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s firmware version.
981  &quot;kind&quot;: &quot;admin#directory#chromeosdevice&quot;, # The type of resource. For the Chromeosdevices resource, the value is `admin#directory#chromeosdevice`.
982  &quot;lastEnrollmentTime&quot;: &quot;A String&quot;, # Date and time the device was last enrolled (Read-only)
983  &quot;lastKnownNetwork&quot;: [ # Contains last known network (Read-only)
984    { # Information for an ip address.
985      &quot;ipAddress&quot;: &quot;A String&quot;, # The IP address.
986      &quot;wanIpAddress&quot;: &quot;A String&quot;, # The WAN IP address.
987    },
988  ],
989  &quot;lastSync&quot;: &quot;A String&quot;, # Date and time the device was last synchronized with the policy settings in the G Suite administrator control panel (Read-only)
990  &quot;macAddress&quot;: &quot;A String&quot;, # The device&#x27;s wireless MAC address. If the device does not have this information, it is not included in the response.
991  &quot;manufactureDate&quot;: &quot;A String&quot;, # (Read-only) The date the device was manufactured in yyyy-mm-dd format.
992  &quot;meid&quot;: &quot;A String&quot;, # The Mobile Equipment Identifier (MEID) or the International Mobile Equipment Identity (IMEI) for the 3G mobile card in a mobile device. A MEID/IMEI is typically used when adding a device to a wireless carrier&#x27;s post-pay service plan. If the device does not have this information, this property is not included in the response. For more information on how to export a MEID/IMEI list, see the [Developer&#x27;s Guide](/admin-sdk/directory/v1/guides/manage-chrome-devices.html#export_meid).
993  &quot;model&quot;: &quot;A String&quot;, # The device&#x27;s model information. If the device does not have this information, this property is not included in the response.
994  &quot;notes&quot;: &quot;A String&quot;, # Notes about this device added by the administrator. This property can be [searched](https://support.google.com/chrome/a/answer/1698333) with the [list](/admin-sdk/directory/v1/reference/chromeosdevices/list) method&#x27;s `query` parameter. Maximum length is 500 characters. Empty values are allowed.
995  &quot;orderNumber&quot;: &quot;A String&quot;, # The device&#x27;s order number. Only devices directly purchased from Google have an order number.
996  &quot;orgUnitId&quot;: &quot;A String&quot;, # The unique ID of the organizational unit. orgUnitPath is the human readable version of orgUnitId. While orgUnitPath may change by renaming an organizational unit within the path, orgUnitId is unchangeable for one organizational unit. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API, and this will be supported in the future.
997  &quot;orgUnitPath&quot;: &quot;A String&quot;, # The full parent path with the organizational unit&#x27;s name associated with the device. Path names are case insensitive. If the parent organizational unit is the top-level organization, it is represented as a forward slash, `/`. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#update_chrome_device) using the API. For more information about how to create an organizational structure for your device, see the [administration help center](https://support.google.com/a/answer/182433).
998  &quot;osVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s operating system version.
999  &quot;platformVersion&quot;: &quot;A String&quot;, # The Chrome device&#x27;s platform version.
1000  &quot;recentUsers&quot;: [ # List of recent device users, in descending order, by last login time.
1001    { # List of recent device users, in descending order, by last login time.
1002      &quot;email&quot;: &quot;A String&quot;, # The user&#x27;s email address. This is only present if the user type is `USER_TYPE_MANAGED`.
1003      &quot;type&quot;: &quot;A String&quot;, # The type of the user.
1004    },
1005  ],
1006  &quot;screenshotFiles&quot;: [ # List of screenshot files to download. Type is always &quot;SCREENSHOT_FILE&quot;. (Read-only)
1007    {
1008      &quot;createTime&quot;: &quot;A String&quot;, # Date and time the file was created
1009      &quot;downloadUrl&quot;: &quot;A String&quot;, # File download URL
1010      &quot;name&quot;: &quot;A String&quot;, # File name
1011      &quot;type&quot;: &quot;A String&quot;, # File type
1012    },
1013  ],
1014  &quot;serialNumber&quot;: &quot;A String&quot;, # The Chrome device serial number entered when the device was enabled. This value is the same as the Admin console&#x27;s *Serial Number* in the *Chrome OS Devices* tab.
1015  &quot;status&quot;: &quot;A String&quot;, # The status of the device.
1016  &quot;supportEndDate&quot;: &quot;A String&quot;, # Final date the device will be supported (Read-only)
1017  &quot;systemRamFreeReports&quot;: [ # Reports of amounts of available RAM memory (Read-only)
1018    {
1019      &quot;reportTime&quot;: &quot;A String&quot;, # Date and time the report was received.
1020      &quot;systemRamFreeInfo&quot;: [
1021        &quot;A String&quot;,
1022      ],
1023    },
1024  ],
1025  &quot;systemRamTotal&quot;: &quot;A String&quot;, # Total RAM on the device [in bytes] (Read-only)
1026  &quot;tpmVersionInfo&quot;: { # Trusted Platform Module (TPM) (Read-only)
1027    &quot;family&quot;: &quot;A String&quot;, # TPM family. We use the TPM 2.0 style encoding, e.g.: TPM 1.2: &quot;1.2&quot; -&gt; 312e3200 TPM 2.0: &quot;2.0&quot; -&gt; 322e3000
1028    &quot;firmwareVersion&quot;: &quot;A String&quot;, # TPM firmware version.
1029    &quot;manufacturer&quot;: &quot;A String&quot;, # TPM manufacturer code.
1030    &quot;specLevel&quot;: &quot;A String&quot;, # TPM specification level. See Library Specification for TPM 2.0 and Main Specification for TPM 1.2.
1031    &quot;tpmModel&quot;: &quot;A String&quot;, # TPM model number.
1032    &quot;vendorSpecific&quot;: &quot;A String&quot;, # Vendor-specific information such as Vendor ID.
1033  },
1034  &quot;willAutoRenew&quot;: True or False, # Determines if the device will auto renew its support after the support end date. This is a read-only property.
1035}</pre>
1036</div>
1037
1038</body></html>