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="chromemanagement_v1.html">Chrome Management API</a> . <a href="chromemanagement_v1.customers.html">customers</a> . <a href="chromemanagement_v1.customers.apps.html">apps</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="chromemanagement_v1.customers.apps.android.html">android()</a></code> 79</p> 80<p class="firstline">Returns the android Resource.</p> 81 82<p class="toc_element"> 83 <code><a href="chromemanagement_v1.customers.apps.chrome.html">chrome()</a></code> 84</p> 85<p class="firstline">Returns the chrome Resource.</p> 86 87<p class="toc_element"> 88 <code><a href="chromemanagement_v1.customers.apps.web.html">web()</a></code> 89</p> 90<p class="firstline">Returns the web Resource.</p> 91 92<p class="toc_element"> 93 <code><a href="#close">close()</a></code></p> 94<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> 101<h3>Method Details</h3> 102<div class="method"> 103 <code class="details" id="close">close()</code> 104 <pre>Close httplib2 connections.</pre> 105</div> 106 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 111Args: 112 customer: string, Required. Customer id or "my_customer" 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 122Returns: 123 An object of the form: 124 125 { # Response containing summary of requested app installations. 126 "nextPageToken": "A String", # Token to specify the next page in the list. 127 "requestedApps": [ # Count of requested apps matching request. 128 { # Details of an app installation request. 129 "appDetails": "A String", # Output only. Format: app_details=customers/{customer_id}/apps/chrome/{app_id} 130 "appId": "A String", # Output only. Unique store identifier for the app. Example: "gmbmikajjgmnabiglmofipeabaddhgne" for the Save to Google Drive Chrome extension. 131 "detailUri": "A String", # Output only. The uri for the detail page of the item. 132 "displayName": "A String", # Output only. App's display name. 133 "iconUri": "A String", # Output only. A link to an image that can be used as an icon for the product. 134 "latestRequestTime": "A String", # Output only. The timestamp of the most recently made request for this app. 135 "requestCount": "A String", # Output only. Total count of requests for this app. 136 }, 137 ], 138 "totalSize": 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 146Args: 147 previous_request: The request for the previous page. (required) 148 previous_response: The response from the request for the previous page. (required) 149 150Returns: 151 A request object that you can call 'execute()' on to request the next 152 page. Returns None if there are no more items in the collection. 153 </pre> 154</div> 155 156</body></html>