Skip to content

Commit 89fc074

Browse files
feat(chromemanagement): update the api
#### chromemanagement:v1 The following keys were added: - resources.customers.resources.apps.methods.countChromeAppRequests (Total Keys: 20) - schemas.GoogleChromeManagementV1ChromeAppRequest (Total Keys: 18) - schemas.GoogleChromeManagementV1CountChromeAppRequestsResponse (Total Keys: 7)
1 parent 617f106 commit 89fc074

File tree

2 files changed

+171
-1
lines changed

2 files changed

+171
-1
lines changed

docs/dyn/chromemanagement_v1.customers.apps.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,65 @@ <h2>Instance Methods</h2>
9292
<p class="toc_element">
9393
<code><a href="#close">close()</a></code></p>
9494
<p class="firstline">Close httplib2 connections.</p>
95+
<p class="toc_element">
96+
<code><a href="#countChromeAppRequests">countChromeAppRequests(customer, orderBy=None, orgUnitId=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
97+
<p class="firstline">Generate summary of app installation requests.</p>
98+
<p class="toc_element">
99+
<code><a href="#countChromeAppRequests_next">countChromeAppRequests_next(previous_request, previous_response)</a></code></p>
100+
<p class="firstline">Retrieves the next page of results.</p>
95101
<h3>Method Details</h3>
96102
<div class="method">
97103
<code class="details" id="close">close()</code>
98104
<pre>Close httplib2 connections.</pre>
99105
</div>
100106

107+
<div class="method">
108+
<code class="details" id="countChromeAppRequests">countChromeAppRequests(customer, orderBy=None, orgUnitId=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
109+
<pre>Generate summary of app installation requests.
110+
111+
Args:
112+
customer: string, Required. Customer id or &quot;my_customer&quot; to use the customer associated to the account making the request. (required)
113+
orderBy: string, Field used to order results. Supported fields: * request_count * latest_request_time
114+
orgUnitId: string, The ID of the organizational unit.
115+
pageSize: integer, Maximum number of results to return. Maximum and default are 50, anything above will be coerced to 50.
116+
pageToken: string, Token to specify the page of the request to be returned.
117+
x__xgafv: string, V1 error format.
118+
Allowed values
119+
1 - v1 error format
120+
2 - v2 error format
121+
122+
Returns:
123+
An object of the form:
124+
125+
{ # Response containing summary of requested app installations.
126+
&quot;nextPageToken&quot;: &quot;A String&quot;, # Token to specify the next page in the list.
127+
&quot;requestedApps&quot;: [ # Count of requested apps matching request.
128+
{ # Details of an app installation request.
129+
&quot;appDetails&quot;: &quot;A String&quot;, # Output only. Format: app_details=customers/{customer_id}/apps/chrome/{app_id}
130+
&quot;appId&quot;: &quot;A String&quot;, # Output only. Unique store identifier for the app. Example: &quot;gmbmikajjgmnabiglmofipeabaddhgne&quot; for the Save to Google Drive Chrome extension.
131+
&quot;detailUri&quot;: &quot;A String&quot;, # Output only. The uri for the detail page of the item.
132+
&quot;displayName&quot;: &quot;A String&quot;, # Output only. App&#x27;s display name.
133+
&quot;iconUri&quot;: &quot;A String&quot;, # Output only. A link to an image that can be used as an icon for the product.
134+
&quot;latestRequestTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the most recently made request for this app.
135+
&quot;requestCount&quot;: &quot;A String&quot;, # Output only. Total count of requests for this app.
136+
},
137+
],
138+
&quot;totalSize&quot;: 42, # Total number of matching app requests.
139+
}</pre>
140+
</div>
141+
142+
<div class="method">
143+
<code class="details" id="countChromeAppRequests_next">countChromeAppRequests_next(previous_request, previous_response)</code>
144+
<pre>Retrieves the next page of results.
145+
146+
Args:
147+
previous_request: The request for the previous page. (required)
148+
previous_response: The response from the request for the previous page. (required)
149+
150+
Returns:
151+
A request object that you can call &#x27;execute()&#x27; on to request the next
152+
page. Returns None if there are no more items in the collection.
153+
</pre>
154+
</div>
155+
101156
</body></html>

googleapiclient/discovery_cache/documents/chromemanagement.v1.json

Lines changed: 116 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,54 @@
111111
"customers": {
112112
"resources": {
113113
"apps": {
114+
"methods": {
115+
"countChromeAppRequests": {
116+
"description": "Generate summary of app installation requests.",
117+
"flatPath": "v1/customers/{customersId}/apps:countChromeAppRequests",
118+
"httpMethod": "GET",
119+
"id": "chromemanagement.customers.apps.countChromeAppRequests",
120+
"parameterOrder": [
121+
"customer"
122+
],
123+
"parameters": {
124+
"customer": {
125+
"description": "Required. Customer id or \"my_customer\" to use the customer associated to the account making the request.",
126+
"location": "path",
127+
"pattern": "^customers/[^/]+$",
128+
"required": true,
129+
"type": "string"
130+
},
131+
"orderBy": {
132+
"description": "Field used to order results. Supported fields: * request_count * latest_request_time",
133+
"location": "query",
134+
"type": "string"
135+
},
136+
"orgUnitId": {
137+
"description": "The ID of the organizational unit.",
138+
"location": "query",
139+
"type": "string"
140+
},
141+
"pageSize": {
142+
"description": "Maximum number of results to return. Maximum and default are 50, anything above will be coerced to 50.",
143+
"format": "int32",
144+
"location": "query",
145+
"type": "integer"
146+
},
147+
"pageToken": {
148+
"description": "Token to specify the page of the request to be returned.",
149+
"location": "query",
150+
"type": "string"
151+
}
152+
},
153+
"path": "v1/{+customer}/apps:countChromeAppRequests",
154+
"response": {
155+
"$ref": "GoogleChromeManagementV1CountChromeAppRequestsResponse"
156+
},
157+
"scopes": [
158+
"https://www.googleapis.com/auth/chrome.management.appdetails.readonly"
159+
]
160+
}
161+
},
114162
"resources": {
115163
"android": {
116164
"methods": {
@@ -382,7 +430,7 @@
382430
}
383431
}
384432
},
385-
"revision": "20211022",
433+
"revision": "20211029",
386434
"rootUrl": "https://chromemanagement.googleapis.com/",
387435
"schemas": {
388436
"GoogleChromeManagementV1AndroidAppInfo": {
@@ -668,6 +716,50 @@
668716
},
669717
"type": "object"
670718
},
719+
"GoogleChromeManagementV1ChromeAppRequest": {
720+
"description": "Details of an app installation request.",
721+
"id": "GoogleChromeManagementV1ChromeAppRequest",
722+
"properties": {
723+
"appDetails": {
724+
"description": "Output only. Format: app_details=customers/{customer_id}/apps/chrome/{app_id}",
725+
"readOnly": true,
726+
"type": "string"
727+
},
728+
"appId": {
729+
"description": "Output only. Unique store identifier for the app. Example: \"gmbmikajjgmnabiglmofipeabaddhgne\" for the Save to Google Drive Chrome extension.",
730+
"readOnly": true,
731+
"type": "string"
732+
},
733+
"detailUri": {
734+
"description": "Output only. The uri for the detail page of the item.",
735+
"readOnly": true,
736+
"type": "string"
737+
},
738+
"displayName": {
739+
"description": "Output only. App's display name.",
740+
"readOnly": true,
741+
"type": "string"
742+
},
743+
"iconUri": {
744+
"description": "Output only. A link to an image that can be used as an icon for the product.",
745+
"readOnly": true,
746+
"type": "string"
747+
},
748+
"latestRequestTime": {
749+
"description": "Output only. The timestamp of the most recently made request for this app.",
750+
"format": "google-datetime",
751+
"readOnly": true,
752+
"type": "string"
753+
},
754+
"requestCount": {
755+
"description": "Output only. Total count of requests for this app.",
756+
"format": "int64",
757+
"readOnly": true,
758+
"type": "string"
759+
}
760+
},
761+
"type": "object"
762+
},
671763
"GoogleChromeManagementV1ChromeAppSiteAccess": {
672764
"description": "Represent one host permission.",
673765
"id": "GoogleChromeManagementV1ChromeAppSiteAccess",
@@ -680,6 +772,29 @@
680772
},
681773
"type": "object"
682774
},
775+
"GoogleChromeManagementV1CountChromeAppRequestsResponse": {
776+
"description": "Response containing summary of requested app installations.",
777+
"id": "GoogleChromeManagementV1CountChromeAppRequestsResponse",
778+
"properties": {
779+
"nextPageToken": {
780+
"description": "Token to specify the next page in the list.",
781+
"type": "string"
782+
},
783+
"requestedApps": {
784+
"description": "Count of requested apps matching request.",
785+
"items": {
786+
"$ref": "GoogleChromeManagementV1ChromeAppRequest"
787+
},
788+
"type": "array"
789+
},
790+
"totalSize": {
791+
"description": "Total number of matching app requests.",
792+
"format": "int32",
793+
"type": "integer"
794+
}
795+
},
796+
"type": "object"
797+
},
683798
"GoogleChromeManagementV1CountChromeVersionsResponse": {
684799
"description": "Response containing requested browser versions details and counts.",
685800
"id": "GoogleChromeManagementV1CountChromeVersionsResponse",

0 commit comments

Comments
 (0)