Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3bfe98f

Browse files
committedFeb 14, 2023
feat(chromemanagement): update the api
#### chromemanagement:v1 The following keys were added: - resources.customers.resources.reports.methods.countChromeBrowsersNeedingAttention (Total Keys: 13) - schemas.GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse (Total Keys: 8)
1 parent 9d6ac15 commit 3bfe98f

File tree

2 files changed

+78
-1
lines changed

2 files changed

+78
-1
lines changed
 

‎docs/dyn/chromemanagement_v1.customers.reports.html

+25
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ <h2>Instance Methods</h2>
7777
<p class="toc_element">
7878
<code><a href="#close">close()</a></code></p>
7979
<p class="firstline">Close httplib2 connections.</p>
80+
<p class="toc_element">
81+
<code><a href="#countChromeBrowsersNeedingAttention">countChromeBrowsersNeedingAttention(customer, orgUnitId=None, x__xgafv=None)</a></code></p>
82+
<p class="firstline">Count of Chrome Browsers that have been recently enrolled, have new policy to be synced, or have no recent activity.</p>
8083
<p class="toc_element">
8184
<code><a href="#countChromeDevicesReachingAutoExpirationDate">countChromeDevicesReachingAutoExpirationDate(customer, maxAueDate=None, minAueDate=None, orgUnitId=None, x__xgafv=None)</a></code></p>
8285
<p class="firstline">Generate report of the number of devices expiring in each month of the selected time frame. Devices are grouped by auto update expiration date and model. Further information can be found [here](https://support.google.com/chrome/a/answer/10564947).</p>
@@ -110,6 +113,28 @@ <h3>Method Details</h3>
110113
<pre>Close httplib2 connections.</pre>
111114
</div>
112115

116+
<div class="method">
117+
<code class="details" id="countChromeBrowsersNeedingAttention">countChromeBrowsersNeedingAttention(customer, orgUnitId=None, x__xgafv=None)</code>
118+
<pre>Count of Chrome Browsers that have been recently enrolled, have new policy to be synced, or have no recent activity.
119+
120+
Args:
121+
customer: string, Required. The customer ID or &quot;my_customer&quot; prefixed with &quot;customers/&quot;. (required)
122+
orgUnitId: string, Optional. The ID of the organizational unit. If omitted, all data will be returned.
123+
x__xgafv: string, V1 error format.
124+
Allowed values
125+
1 - v1 error format
126+
2 - v2 error format
127+
128+
Returns:
129+
An object of the form:
130+
131+
{ # Response containing counts for browsers that need attention.
132+
&quot;noRecentActivityCount&quot;: &quot;A String&quot;, # Number of browsers that haven’t had any recent activity
133+
&quot;pendingBrowserUpdateCount&quot;: &quot;A String&quot;, # Number of browsers that are pending an OS update
134+
&quot;recentlyEnrolledCount&quot;: &quot;A String&quot;, # Number of browsers that have been recently enrolled
135+
}</pre>
136+
</div>
137+
113138
<div class="method">
114139
<code class="details" id="countChromeDevicesReachingAutoExpirationDate">countChromeDevicesReachingAutoExpirationDate(customer, maxAueDate=None, minAueDate=None, orgUnitId=None, x__xgafv=None)</code>
115140
<pre>Generate report of the number of devices expiring in each month of the selected time frame. Devices are grouped by auto update expiration date and model. Further information can be found [here](https://support.google.com/chrome/a/answer/10564947).

‎googleapiclient/discovery_cache/documents/chromemanagement.v1.json

+53-1
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,36 @@
254254
},
255255
"reports": {
256256
"methods": {
257+
"countChromeBrowsersNeedingAttention": {
258+
"description": "Count of Chrome Browsers that have been recently enrolled, have new policy to be synced, or have no recent activity.",
259+
"flatPath": "v1/customers/{customersId}/reports:countChromeBrowsersNeedingAttention",
260+
"httpMethod": "GET",
261+
"id": "chromemanagement.customers.reports.countChromeBrowsersNeedingAttention",
262+
"parameterOrder": [
263+
"customer"
264+
],
265+
"parameters": {
266+
"customer": {
267+
"description": "Required. The customer ID or \"my_customer\" prefixed with \"customers/\".",
268+
"location": "path",
269+
"pattern": "^customers/[^/]+$",
270+
"required": true,
271+
"type": "string"
272+
},
273+
"orgUnitId": {
274+
"description": "Optional. The ID of the organizational unit. If omitted, all data will be returned.",
275+
"location": "query",
276+
"type": "string"
277+
}
278+
},
279+
"path": "v1/{+customer}/reports:countChromeBrowsersNeedingAttention",
280+
"response": {
281+
"$ref": "GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse"
282+
},
283+
"scopes": [
284+
"https://www.googleapis.com/auth/chrome.management.reports.readonly"
285+
]
286+
},
257287
"countChromeDevicesReachingAutoExpirationDate": {
258288
"description": "Generate report of the number of devices expiring in each month of the selected time frame. Devices are grouped by auto update expiration date and model. Further information can be found [here](https://support.google.com/chrome/a/answer/10564947).",
259289
"flatPath": "v1/customers/{customersId}/reports:countChromeDevicesReachingAutoExpirationDate",
@@ -764,7 +794,7 @@
764794
}
765795
}
766796
},
767-
"revision": "20230206",
797+
"revision": "20230212",
768798
"rootUrl": "https://chromemanagement.googleapis.com/",
769799
"schemas": {
770800
"GoogleChromeManagementV1AndroidAppInfo": {
@@ -1402,6 +1432,28 @@
14021432
},
14031433
"type": "object"
14041434
},
1435+
"GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse": {
1436+
"description": "Response containing counts for browsers that need attention.",
1437+
"id": "GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse",
1438+
"properties": {
1439+
"noRecentActivityCount": {
1440+
"description": "Number of browsers that haven\u2019t had any recent activity",
1441+
"format": "int64",
1442+
"type": "string"
1443+
},
1444+
"pendingBrowserUpdateCount": {
1445+
"description": "Number of browsers that are pending an OS update",
1446+
"format": "int64",
1447+
"type": "string"
1448+
},
1449+
"recentlyEnrolledCount": {
1450+
"description": "Number of browsers that have been recently enrolled",
1451+
"format": "int64",
1452+
"type": "string"
1453+
}
1454+
},
1455+
"type": "object"
1456+
},
14051457
"GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse": {
14061458
"description": "Response containing a list of devices expiring in each month of a selected time frame. Counts are grouped by model and Auto Update Expiration date.",
14071459
"id": "GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse",

0 commit comments

Comments
 (0)
Please sign in to comment.